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 | cf1955cb165854cb0df064e4f991ef494b85cdf3 (patch) | |
tree | 8380cc7d93c9cdf035cfbb6cef4e036ead76182d /llvm/lib/CodeGen/RegAllocSimple.cpp | |
parent | 1af3af463addd510dd1c0d59628af3627c25003e (diff) | |
download | bcm5719-llvm-cf1955cb165854cb0df064e4f991ef494b85cdf3.tar.gz bcm5719-llvm-cf1955cb165854cb0df064e4f991ef494b85cdf3.zip |
Prune #includes
llvm-svn: 5044
Diffstat (limited to 'llvm/lib/CodeGen/RegAllocSimple.cpp')
-rw-r--r-- | llvm/lib/CodeGen/RegAllocSimple.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/llvm/lib/CodeGen/RegAllocSimple.cpp b/llvm/lib/CodeGen/RegAllocSimple.cpp index b84d2b8ea49..8dc4cf83803 100644 --- a/llvm/lib/CodeGen/RegAllocSimple.cpp +++ b/llvm/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 { |