summaryrefslogtreecommitdiff
path: root/lib/Debugger/SourceFile.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-20 06:38:12 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-20 06:38:12 +0000
commitcdb28bed6bdb67d295495214180c42451b11f94e (patch)
treef6eb1577c461658ee08651a39ed96b5fb5cc0002 /lib/Debugger/SourceFile.cpp
parent099557b6294802797f37d10fa7171815d85e7744 (diff)
downloadllvm-cdb28bed6bdb67d295495214180c42451b11f94e.tar.gz
llvm-cdb28bed6bdb67d295495214180c42451b11f94e.tar.bz2
llvm-cdb28bed6bdb67d295495214180c42451b11f94e.tar.xz
Remove unnecessary #includes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19070 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Debugger/SourceFile.cpp')
-rw-r--r--lib/Debugger/SourceFile.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/Debugger/SourceFile.cpp b/lib/Debugger/SourceFile.cpp
index da2d3475df..8e40c8815d 100644
--- a/lib/Debugger/SourceFile.cpp
+++ b/lib/Debugger/SourceFile.cpp
@@ -12,11 +12,6 @@
//===----------------------------------------------------------------------===//
#include "llvm/Debugger/SourceFile.h"
-#include "llvm/Support/SlowOperationInformer.h"
-#include <iostream>
-#include <cerrno>
-#include <fcntl.h>
-#include <unistd.h>
using namespace llvm;
/// readFile - Load Filename
@@ -75,4 +70,3 @@ void SourceFile::getSourceLine(unsigned LineNo, const char *&LineStart,
assert(LineEnd >= LineStart && "We somehow got our pointers swizzled!");
}
-