Output to cerr rather than cout so that debug info doesn't mess up assembly generation

llvm-svn: 840
diff --git a/llvm/lib/Target/Sparc/SparcRegClassInfo.cpp b/llvm/lib/Target/Sparc/SparcRegClassInfo.cpp
index 883ed52..ff01f35 100644
--- a/llvm/lib/Target/Sparc/SparcRegClassInfo.cpp
+++ b/llvm/lib/Target/Sparc/SparcRegClassInfo.cpp
@@ -43,8 +43,8 @@
       return;
     }
     else {                              // can't allocate the suggested col
-      cout << " Coud NOT allocate the suggested color for LR ";
-      LR->printSet(); cout << endl;
+      cerr << " Could NOT allocate the suggested color for LR ";
+      LR->printSet(); cerr << endl;
     }
   }
 
@@ -193,8 +193,8 @@
       return;
     }
     else {                              // can't allocate the suggested col
-      cout << " Coud NOT allocate the suggested color for LR ";
-      LR->printSet(); cout << endl;
+      cerr << " Could NOT allocate the suggested color for LR ";
+      LR->printSet(); cerr << endl;
     }
   }