diff options
| author | Brian Gaeke <gaeke@uiuc.edu> | 2003-10-22 20:44:29 +0000 | 
|---|---|---|
| committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-10-22 20:44:29 +0000 | 
| commit | f140b28c16495397c6345d5493bafa1b0a7e176a (patch) | |
| tree | bae2f61ca2ce767f5c7e5d478e96f79137183399 /llvm/lib/CodeGen/RegAlloc | |
| parent | 41fe18cbaa408ffdf5b2d612fac4b0ce9342dcf7 (diff) | |
| download | bcm5719-llvm-f140b28c16495397c6345d5493bafa1b0a7e176a.tar.gz bcm5719-llvm-f140b28c16495397c6345d5493bafa1b0a7e176a.zip  | |
Change the type of FnAllocState.
llvm-svn: 9388
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  | 

