No major change


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1235 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp b/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp
index 824b02e..8e4530c 100644
--- a/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp
+++ b/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp
@@ -373,8 +373,8 @@
 
 	  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 @@
 	    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;