Fix broken -debug printing

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15115 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2004-07-22 21:54:22 +00:00
parent 4951d48a16
commit e8850f476e

View File

@@ -306,6 +306,7 @@ void LiveIntervals::handleVirtualRegisterDef(MachineBasicBlock* mbb,
assert(vi.AliveBlocks.empty() && assert(vi.AliveBlocks.empty() &&
"Shouldn't be alive across any blocks!"); "Shouldn't be alive across any blocks!");
interval.addRange(defIndex, killIdx); interval.addRange(defIndex, killIdx);
DEBUG(std::cerr << "\n");
return; return;
} }
} }