mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-25 16:31:33 +00:00
Write the WARNING message to cout instead of cerr. Writing to cerr causes
Tcl to claim that the program had an error and thus produces errors in the dejagnu testing when its really just a warning. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28556 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e167af3023
commit
c02af8538b
@ -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::cerr << "WARNING: change " << F->getName() << " to "
|
||||
std::cout << "WARNING: change " << F->getName() << " to "
|
||||
<< R->getName() << "\n";
|
||||
return R;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user