diff --git a/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp b/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp index 824b02e0b91..8e4530c15d4 100644 --- a/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp +++ b/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp @@ -373,8 +373,8 @@ void PhyRegAlloc::updateMachineCode() for( AdIt = IBef.begin(); AdIt != IBef.end() ; ++AdIt ) { - if( DEBUG_RA) - cerr << " *$* PREPENDed instr " << *AdIt << endl; + if( DEBUG_RA ) + cerr << " PREPENDed instr: " << **AdIt << endl; MInstIterator = MIVec.insert( MInstIterator, *AdIt ); ++MInstIterator; @@ -481,7 +481,7 @@ void PhyRegAlloc::updateMachineCode() for( AdIt = IAft.begin(); AdIt != IAft.end() ; ++AdIt ) { if(DEBUG_RA) - cerr << " *#* APPENDed instr opcode: " << *AdIt << endl; + cerr << " APPENDed instr: " << **AdIt << endl; MInstIterator = MIVec.insert( MInstIterator, *AdIt ); ++MInstIterator; diff --git a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp index 824b02e0b91..8e4530c15d4 100644 --- a/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp +++ b/lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp @@ -373,8 +373,8 @@ void PhyRegAlloc::updateMachineCode() for( AdIt = IBef.begin(); AdIt != IBef.end() ; ++AdIt ) { - if( DEBUG_RA) - cerr << " *$* PREPENDed instr " << *AdIt << endl; + if( DEBUG_RA ) + cerr << " PREPENDed instr: " << **AdIt << endl; MInstIterator = MIVec.insert( MInstIterator, *AdIt ); ++MInstIterator; @@ -481,7 +481,7 @@ void PhyRegAlloc::updateMachineCode() for( AdIt = IAft.begin(); AdIt != IAft.end() ; ++AdIt ) { if(DEBUG_RA) - cerr << " *#* APPENDed instr opcode: " << *AdIt << endl; + cerr << " APPENDed instr: " << **AdIt << endl; MInstIterator = MIVec.insert( MInstIterator, *AdIt ); ++MInstIterator;