From: Reid Spencer Date: Tue, 30 May 2006 16:34:59 +0000 (+0000) Subject: Undo a patch that breaks llvm-as because the warning message is written to X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=dd0f8df16100630a3e74d214f508e2cc94ec8d70;p=oota-llvm.git 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 --- diff --git a/lib/VMCore/AutoUpgrade.cpp b/lib/VMCore/AutoUpgrade.cpp index 0afb5b9951c..1529d1bf1f7 100644 --- a/lib/VMCore/AutoUpgrade.cpp +++ b/lib/VMCore/AutoUpgrade.cpp @@ -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; }