aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/SparcV9/RegAlloc
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-10-23 20:32:02 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-10-23 20:32:02 +0000
commitb8dbbcee25f2c2c6e3bc8fd81a89c087cd5e9a3d (patch)
treeccce0ed45dec753eb2bc08a5c26b337f752fd99a /lib/Target/SparcV9/RegAlloc
parent3d7125cd6665a303e315aad36794314c1481e1c0 (diff)
downloadexternal_llvm-b8dbbcee25f2c2c6e3bc8fd81a89c087cd5e9a3d.zip
external_llvm-b8dbbcee25f2c2c6e3bc8fd81a89c087cd5e9a3d.tar.gz
external_llvm-b8dbbcee25f2c2c6e3bc8fd81a89c087cd5e9a3d.tar.bz2
Make FnAllocState contain vectors of AllocInfo, instead of LLVM Constants.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9450 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SparcV9/RegAlloc')
-rw-r--r--lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.h
index e93c51d..db23f48 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 *, 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