Make FnAllocState contain vectors of AllocInfo, instead of LLVM Constants.
authorBrian Gaeke <gaeke@uiuc.edu>
Thu, 23 Oct 2003 20:32:02 +0000 (20:32 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Thu, 23 Oct 2003 20:32:02 +0000 (20:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9450 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/RegAlloc/PhyRegAlloc.h
lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h

index e93c51d12465637346534801039f81c2237b9d7c..db23f481615b4726ffc92c144689f774719f2e61 100644 (file)
@@ -85,7 +85,7 @@ class PhyRegAlloc : public FunctionPass {
   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
index e93c51d12465637346534801039f81c2237b9d7c..db23f481615b4726ffc92c144689f774719f2e61 100644 (file)
@@ -85,7 +85,7 @@ class PhyRegAlloc : public FunctionPass {
   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