1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Undo a patch that breaks llvm-as because the warning message is written to

stdout when the output of llvm-as is also written to stdout. We'll have to
fix tcl some other way.

llvm-svn: 28557
This commit is contained in:
Reid Spencer 2006-05-30 16:34:59 +00:00
parent 0ce0aa6544
commit 9159a7e937

View File

@ -193,7 +193,7 @@ Function *llvm::UpgradeIntrinsicFunction(Function* F) {
// See if its one of the name's we're interested in.
if (Function *R = getUpgradedIntrinsic(F)) {
if (R->getName() != F->getName())
std::cout << "WARNING: change " << F->getName() << " to "
std::cerr << "WARNING: change " << F->getName() << " to "
<< R->getName() << "\n";
return R;
}