mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Stack Coloring: Debug prints to print the slot number and not the array index.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163509 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a7de8a61df
commit
9438d1e351
@ -646,7 +646,8 @@ bool StackColoring::runOnMachineFunction(MachineFunction &Func) {
|
||||
First->MergeRangesInAsValue(*Second, First->getValNumInfo(0));
|
||||
SlotRemap[SecondSlot] = FirstSlot;
|
||||
SortedSlots[J] = -1;
|
||||
DEBUG(dbgs()<<"Merging #"<<I<<" and slots #"<<J<<" together.\n");
|
||||
DEBUG(dbgs()<<"Merging #"<<FirstSlot<<" and slots #"<<
|
||||
SecondSlot<<" together.\n");
|
||||
unsigned MaxAlignment = std::max(MFI->getObjectAlignment(FirstSlot),
|
||||
MFI->getObjectAlignment(SecondSlot));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user