[llvm-commits] CVS: llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp
Brian Gaeke
gaeke at cs.uiuc.edu
Sat Sep 20 21:52:00 PDT 2003
Changes in directory llvm/lib/CodeGen/RegAlloc:
PhyRegAlloc.cpp updated: 1.111 -> 1.112
---
Log message:
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.)
---
Diffs of the changes:
Index: llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp
diff -u llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp:1.111 llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp:1.112
--- llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp:1.111 Sat Sep 20 21:24:09 2003
+++ llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp Sat Sep 20 21:50:21 2003
@@ -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"
@@ -1168,6 +1167,7 @@
}
} // for all LR's in hash map
}
+
//----------------------------------------------------------------------------
// The entry point to Register Allocation
More information about the llvm-commits
mailing list