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 | 3692fd97a6fb832f010bd269a7c65d010c518440 (patch) | |
tree | 76cbfcd2915005d0d30251d8a771b028836387f1 /lib/CodeGen/RegAlloc | |
parent | 60a3c55c4f98a3bdf43e85113eb0f4536b15f30e (diff) |
Change the type of FnAllocState.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9388 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/RegAlloc')
-rw-r--r-- | lib/CodeGen/RegAlloc/PhyRegAlloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/RegAlloc/PhyRegAlloc.h b/lib/CodeGen/RegAlloc/PhyRegAlloc.h index 1e4362f962..b4cec8c35d 100644 --- a/lib/CodeGen/RegAlloc/PhyRegAlloc.h +++ b/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 |