mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
Change the type of FnAllocState.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9388 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
60a3c55c4f
commit
3692fd97a6
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user