[llvm-commits] CVS: llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h
Brian Gaeke
gaeke at cs.uiuc.edu
Wed Oct 22 15:45:01 PDT 2003
Changes in directory llvm/lib/CodeGen/RegAlloc:
PhyRegAlloc.h updated: 1.56 -> 1.57
---
Log message:
Change the type of FnAllocState.
---
Diffs of the changes: (+1 -1)
Index: llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h
diff -u llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h:1.56 llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h:1.57
--- llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h:1.56 Wed Oct 22 15:23:13 2003
+++ llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h Wed Oct 22 15:44:29 2003
@@ -85,7 +85,7 @@
AddedInstrns AddedInstrAtEntry; // to store instrns added at entry
const LoopInfo *LoopDepthCalc; // to calculate loop depths
- std::map<const Function *, Constant *> FnAllocState;
+ std::map<const Function *, std::vector<Constant *> > FnAllocState;
PhyRegAlloc(const PhyRegAlloc&); // DO NOT IMPLEMENT
void operator=(const PhyRegAlloc&); // DO NOT IMPLEMENT
More information about the llvm-commits
mailing list