mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Debug output should go to cerr, not cout, because that's where bytecode goes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6002 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c472d7c52a
commit
15b55e20cc
@ -479,7 +479,7 @@ void RA::AllocateBasicBlock(MachineBasicBlock &MBB) {
|
||||
}
|
||||
|
||||
if (PhysReg) {
|
||||
DEBUG(std::cout << "V: " << VirtReg << " P: " << PhysReg
|
||||
DEBUG(std::cerr << "V: " << VirtReg << " P: " << PhysReg
|
||||
<< " Killed by: " << *MI);
|
||||
removePhysReg(PhysReg);
|
||||
}
|
||||
@ -562,7 +562,7 @@ void RA::AllocateBasicBlock(MachineBasicBlock &MBB) {
|
||||
}
|
||||
|
||||
if (PhysReg) {
|
||||
DEBUG(std::cout << "V: " << VirtReg << " P: " << PhysReg
|
||||
DEBUG(std::cerr << "V: " << VirtReg << " P: " << PhysReg
|
||||
<< " dead after: " << *MI);
|
||||
removePhysReg(PhysReg);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user