diff options
Diffstat (limited to 'llvm/lib/CodeGen/RegAlloc')
| -rw-r--r-- | llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h index 1e4362f9627..b4cec8c35d5 100644 --- a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h +++ b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.h @@ -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 *, Constant *> FnAllocState; +  std::map<const Function *, std::vector<Constant *> > FnAllocState;    PhyRegAlloc(const PhyRegAlloc&);     // DO NOT IMPLEMENT    void operator=(const PhyRegAlloc&);  // DO NOT IMPLEMENT | 

