[llvm-commits] CVS: llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h

Brian Gaeke gaeke at cs.uiuc.edu
Thu Oct 23 15:33:15 PDT 2003


Changes in directory llvm/lib/CodeGen/RegAlloc:

PhyRegAlloc.h updated: 1.58 -> 1.59

---
Log message:

Make FnAllocState contain vectors of AllocInfo, instead of LLVM Constants.


---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h
diff -u llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h:1.58 llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h:1.59
--- llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h:1.58	Thu Oct 23 13:06:27 2003
+++ llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h	Thu Oct 23 15:32:02 2003
@@ -85,7 +85,7 @@
   AddedInstrns AddedInstrAtEntry;       // to store instrns added at entry
   const LoopInfo *LoopDepthCalc;        // to calculate loop depths 
 
-  std::map<const Function *, std::vector<Constant *> > FnAllocState;
+  std::map<const Function *, std::vector<AllocInfo> > FnAllocState;
 
   PhyRegAlloc(const PhyRegAlloc&);     // DO NOT IMPLEMENT
   void operator=(const PhyRegAlloc&);  // DO NOT IMPLEMENT





More information about the llvm-commits mailing list