diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-21 02:50:21 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-21 02:50:21 +0000 |
commit | 20c888fa9f03af548acdff20200a29b403db2f20 (patch) | |
tree | b75819f50e3988ed89faa294e17b205f27bfc62e /llvm/lib/CodeGen/RegAlloc | |
parent | 3a0a5fc1b352e1a07a6cb039dbe291d8a1679f1a (diff) | |
download | bcm5719-llvm-20c888fa9f03af548acdff20200a29b403db2f20.tar.gz bcm5719-llvm-20c888fa9f03af548acdff20200a29b403db2f20.zip |
Rearrange #includes ... since there are fewer now I guess it's a win.
(I also zapped printMachineCode() and printLabel() at the previous checkin,
but forgot to mention it.)
llvm-svn: 8646
Diffstat (limited to 'llvm/lib/CodeGen/RegAlloc')
-rw-r--r-- | llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp index 83470f6580b..1c740b6e01e 100644 --- a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp +++ b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp @@ -4,11 +4,11 @@ // //===----------------------------------------------------------------------===// -#include "llvm/CodeGen/RegisterAllocation.h" #include "PhyRegAlloc.h" #include "RegAllocCommon.h" #include "RegClass.h" #include "IGNode.h" +#include "llvm/CodeGen/MachineInstr.h" #include "llvm/CodeGen/MachineInstrBuilder.h" #include "llvm/CodeGen/MachineInstrAnnot.h" #include "llvm/CodeGen/MachineFunction.h" @@ -16,7 +16,6 @@ #include "llvm/CodeGen/FunctionLiveVarInfo.h" #include "llvm/CodeGen/InstrSelection.h" #include "llvm/Analysis/LoopInfo.h" -#include "llvm/Target/TargetFrameInfo.h" #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Function.h" #include "llvm/Type.h" @@ -1169,6 +1168,7 @@ void PhyRegAlloc::allocateStackSpace4SpilledLRs() { } // for all LR's in hash map } + //---------------------------------------------------------------------------- // The entry point to Register Allocation //---------------------------------------------------------------------------- |