mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
Print out the name of the function during SSC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104572 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
33276d95ef
commit
ef473bfc44
@ -699,7 +699,11 @@ bool StackSlotColoring::RemoveDeadStores(MachineBasicBlock* MBB) {
|
||||
|
||||
|
||||
bool StackSlotColoring::runOnMachineFunction(MachineFunction &MF) {
|
||||
DEBUG(dbgs() << "********** Stack Slot Coloring **********\n");
|
||||
DEBUG({
|
||||
dbgs() << "********** Stack Slot Coloring **********\n"
|
||||
<< "********** Function: "
|
||||
<< MF.getFunction()->getName() << '\n';
|
||||
});
|
||||
|
||||
MFI = MF.getFrameInfo();
|
||||
MRI = &MF.getRegInfo();
|
||||
|
Loading…
x
Reference in New Issue
Block a user