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/Target/SparcV9/RegAlloc | |
parent | 60a3c55c4f98a3bdf43e85113eb0f4536b15f30e (diff) | |
download | external_llvm-3692fd97a6fb832f010bd269a7c65d010c518440.zip external_llvm-3692fd97a6fb832f010bd269a7c65d010c518440.tar.gz external_llvm-3692fd97a6fb832f010bd269a7c65d010c518440.tar.bz2 |
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/Target/SparcV9/RegAlloc')
-rw-r--r-- | lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h index 1e4362f..b4cec8c 100644 --- a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h +++ b/lib/Target/SparcV9/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 |