mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
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
This commit is contained in:
parent
3d7125cd66
commit
b8dbbcee25
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user