diff options
Diffstat (limited to 'lib/Target/SparcV9/SparcV9TargetMachine.cpp')
-rw-r--r-- | lib/Target/SparcV9/SparcV9TargetMachine.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/SparcV9/SparcV9TargetMachine.cpp b/lib/Target/SparcV9/SparcV9TargetMachine.cpp index e8835ae..9de9bc9 100644 --- a/lib/Target/SparcV9/SparcV9TargetMachine.cpp +++ b/lib/Target/SparcV9/SparcV9TargetMachine.cpp @@ -47,8 +47,8 @@ void AllocateRegisters(Method *M, TargetMachine &TM) return; if( DEBUG_RA ) { - cout << endl << "******************** Method "<< (M)->getName(); - cout << " ********************" <<endl; + cerr << endl << "******************** Method "<< (M)->getName(); + cerr << " ********************" <<endl; } MethodLiveVarInfo LVI(M ); // Analyze live varaibles @@ -59,7 +59,7 @@ void AllocateRegisters(Method *M, TargetMachine &TM) PRA.allocateRegisters(); - if( DEBUG_RA ) cout << endl << "Register allocation complete!" << endl; + if( DEBUG_RA ) cerr << endl << "Register allocation complete!" << endl; } |