diff options
author | Chris Lattner <sabre@nondot.org> | 2002-12-15 18:19:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-12-15 18:19:24 +0000 |
commit | abe8dd592d1c2e4e604e39fcf4598642fd6ea197 (patch) | |
tree | eec90cf4f215e50b6530680629cc589f98fec522 /lib/CodeGen/RegAllocSimple.cpp | |
parent | ad44bd99ff32d996c7b1598129f069437d5bfc61 (diff) |
Prune #includes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5044 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAllocSimple.cpp')
-rw-r--r-- | lib/CodeGen/RegAllocSimple.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/lib/CodeGen/RegAllocSimple.cpp b/lib/CodeGen/RegAllocSimple.cpp index b84d2b8ea4..8dc4cf8380 100644 --- a/lib/CodeGen/RegAllocSimple.cpp +++ b/lib/CodeGen/RegAllocSimple.cpp @@ -4,18 +4,12 @@ // //===----------------------------------------------------------------------===// -#include "llvm/Function.h" -#include "llvm/iTerminators.h" -#include "llvm/Type.h" -#include "llvm/Constants.h" -#include "llvm/Pass.h" #include "llvm/CodeGen/MachineFunction.h" -#include "llvm/CodeGen/MachineInstrBuilder.h" +#include "llvm/CodeGen/MachineInstr.h" #include "llvm/Target/MachineInstrInfo.h" -#include "llvm/Target/MRegisterInfo.h" #include "llvm/Target/TargetMachine.h" -#include "llvm/Support/InstVisitor.h" #include "Support/Statistic.h" +#include <iostream> namespace { struct RegAllocSimple : public FunctionPass { |