summaryrefslogtreecommitdiff
path: root/lib/Bytecode
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-04-29 17:42:12 +0000
committerChris Lattner <sabre@nondot.org>2002-04-29 17:42:12 +0000
commitc6f3ae5c66c8e0dab6a2bd9601d0e253ef9ba794 (patch)
treeca8740e8f4bb594ab469bd12b435a9e9515e2878 /lib/Bytecode
parent8b054c0eb96f250b6cebe26cc13bf880d8f44cc2 (diff)
downloadllvm-c6f3ae5c66c8e0dab6a2bd9601d0e253ef9ba794.tar.gz
llvm-c6f3ae5c66c8e0dab6a2bd9601d0e253ef9ba794.tar.bz2
llvm-c6f3ae5c66c8e0dab6a2bd9601d0e253ef9ba794.tar.xz
Eliminate duplicate or unneccesary #include's
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2397 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode')
-rw-r--r--lib/Bytecode/Reader/ConstantReader.cpp1
-rw-r--r--lib/Bytecode/Reader/Reader.cpp1
-rw-r--r--lib/Bytecode/Writer/InstructionWriter.cpp1
-rw-r--r--lib/Bytecode/Writer/WriterInternals.h1
4 files changed, 0 insertions, 4 deletions
diff --git a/lib/Bytecode/Reader/ConstantReader.cpp b/lib/Bytecode/Reader/ConstantReader.cpp
index 4c7ebb119a..eb0cadc8ec 100644
--- a/lib/Bytecode/Reader/ConstantReader.cpp
+++ b/lib/Bytecode/Reader/ConstantReader.cpp
@@ -10,7 +10,6 @@
#include "ReaderInternals.h"
#include "llvm/Module.h"
-#include "llvm/BasicBlock.h"
#include "llvm/Constants.h"
#include "llvm/GlobalVariable.h"
#include <algorithm>
diff --git a/lib/Bytecode/Reader/Reader.cpp b/lib/Bytecode/Reader/Reader.cpp
index 7418c81bbe..70a6ae97f3 100644
--- a/lib/Bytecode/Reader/Reader.cpp
+++ b/lib/Bytecode/Reader/Reader.cpp
@@ -15,7 +15,6 @@
#include "llvm/Bytecode/Format.h"
#include "llvm/GlobalVariable.h"
#include "llvm/Module.h"
-#include "llvm/BasicBlock.h"
#include "llvm/Constants.h"
#include "llvm/iPHINode.h"
#include "llvm/iOther.h"
diff --git a/lib/Bytecode/Writer/InstructionWriter.cpp b/lib/Bytecode/Writer/InstructionWriter.cpp
index c32c6b476f..2c1ce975bc 100644
--- a/lib/Bytecode/Writer/InstructionWriter.cpp
+++ b/lib/Bytecode/Writer/InstructionWriter.cpp
@@ -13,7 +13,6 @@
#include "llvm/Module.h"
#include "llvm/Function.h"
#include "llvm/BasicBlock.h"
-#include "llvm/Instruction.h"
#include "llvm/DerivedTypes.h"
#include "llvm/iOther.h"
#include "llvm/iTerminators.h"
diff --git a/lib/Bytecode/Writer/WriterInternals.h b/lib/Bytecode/Writer/WriterInternals.h
index 73884bbdcc..bd4a328826 100644
--- a/lib/Bytecode/Writer/WriterInternals.h
+++ b/lib/Bytecode/Writer/WriterInternals.h
@@ -17,7 +17,6 @@
#include "llvm/Bytecode/Primitives.h"
#include "llvm/SlotCalculator.h"
#include "llvm/Instruction.h"
-#include <deque>
class BytecodeWriter {
std::deque<unsigned char> &Out;