From ad1400924d9145b71d983c7ae37e38a12a3f0037 Mon Sep 17 00:00:00 2001 From: Ruchira Sasanka Date: Fri, 9 Nov 2001 23:49:42 +0000 Subject: [PATCH] No major change git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1235 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/RegAlloc/PhyRegAlloc.cpp | 6 +++--- lib/Target/SparcV9/RegAlloc/PhyRegAlloc.cpp | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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; -- 2.34.1