mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Print basic block numbers in live interval debug output. Since the rest of the
debug output is showing machine instructions, the IR-level basic block names aren't very meaningful, and because multiple machine basic blocks may be derived from one IR-level BB, they're also not unique. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102960 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a75586f37e
commit
ad98f795d0
@ -665,7 +665,8 @@ void LiveIntervals::computeIntervals() {
|
||||
|
||||
// Track the index of the current machine instr.
|
||||
SlotIndex MIIndex = getMBBStartIdx(MBB);
|
||||
DEBUG(dbgs() << MBB->getName() << ":\n");
|
||||
DEBUG(dbgs() << "BB#" << MBB->getNumber()
|
||||
<< ":\t\t# derived from " << MBB->getName() << "\n");
|
||||
|
||||
// Create intervals for live-ins to this BB first.
|
||||
for (MachineBasicBlock::livein_iterator LI = MBB->livein_begin(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user