mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Output to cerr rather than cout so that debug info doesn't mess up assembly generation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@840 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user