diff options
author | Chris Lattner <sabre@nondot.org> | 2001-07-21 23:24:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-07-21 23:24:48 +0000 |
commit | 68498cefe602bf5364168b4acd0bd5806cdd72ec (patch) | |
tree | 699af48be3e6cdac6af704b565642316e0cd4826 /lib/CodeGen/MachineInstr.cpp | |
parent | 942d99e4c8922af40345dce1f886a34d621462c7 (diff) |
Eliminate lots of unnecessary #includes and forward decls
there are probably more to kill
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@261 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | lib/CodeGen/MachineInstr.cpp | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/lib/CodeGen/MachineInstr.cpp b/lib/CodeGen/MachineInstr.cpp index e8897bf2e9..d48f2d4e35 100644 --- a/lib/CodeGen/MachineInstr.cpp +++ b/lib/CodeGen/MachineInstr.cpp @@ -12,22 +12,10 @@ // 7/2/01 - Vikram Adve - Created //**************************************************************************/ - -//************************** System Include Files **************************/ - -#include <strstream.h> -#include <string> -#include <vector> - -//*************************** User Include Files ***************************/ - -#include "llvm/Type.h" -#include "llvm/DerivedTypes.h" +#include "llvm/CodeGen/MachineInstr.h" #include "llvm/ConstPoolVals.h" -#include "llvm/Value.h" #include "llvm/Instruction.h" -#include "llvm/CodeGen/InstrForest.h" -#include "llvm/CodeGen/MachineInstr.h" +#include <strstream> //************************ Class Implementations **************************/ |