diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-15 18:15:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-15 18:15:27 +0000 |
commit | f3f1e452eab177f358bbcd433cb2000db1478e1b (patch) | |
tree | a4c535cc0aef2d5627e38289beed9882a7042f55 /llvm/lib/Target/Sparc/SparcRegClassInfo.cpp | |
parent | 66fc9e73edf4a112d00637972990353d58ed04d3 (diff) | |
download | bcm5719-llvm-f3f1e452eab177f358bbcd433cb2000db1478e1b.tar.gz bcm5719-llvm-f3f1e452eab177f358bbcd433cb2000db1478e1b.zip |
Output to cerr rather than cout so that debug info doesn't mess up assembly generation
llvm-svn: 840
Diffstat (limited to 'llvm/lib/Target/Sparc/SparcRegClassInfo.cpp')
-rw-r--r-- | llvm/lib/Target/Sparc/SparcRegClassInfo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/Sparc/SparcRegClassInfo.cpp b/llvm/lib/Target/Sparc/SparcRegClassInfo.cpp index 883ed52d0fc..ff01f355edc 100644 --- a/llvm/lib/Target/Sparc/SparcRegClassInfo.cpp +++ b/llvm/lib/Target/Sparc/SparcRegClassInfo.cpp @@ -43,8 +43,8 @@ void SparcIntRegClass::colorIGNode(IGNode * Node, bool IsColorUsedArr[]) const 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 @@ void SparcFloatRegClass::colorIGNode(IGNode * Node,bool IsColorUsedArr[]) const 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; } } |