mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-23 16:19:52 +00: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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28557 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -193,7 +193,7 @@ Function *llvm::UpgradeIntrinsicFunction(Function* F) {
|
|||||||
// See if its one of the name's we're interested in.
|
// See if its one of the name's we're interested in.
|
||||||
if (Function *R = getUpgradedIntrinsic(F)) {
|
if (Function *R = getUpgradedIntrinsic(F)) {
|
||||||
if (R->getName() != F->getName())
|
if (R->getName() != F->getName())
|
||||||
std::cout << "WARNING: change " << F->getName() << " to "
|
std::cerr << "WARNING: change " << F->getName() << " to "
|
||||||
<< R->getName() << "\n";
|
<< R->getName() << "\n";
|
||||||
return R;
|
return R;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user