diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-05-30 16:05:59 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-05-30 16:05:59 +0000 |
commit | c02af8538b680775440f6ebfe647346d22d6ba48 (patch) | |
tree | 6a6398092e005337509582a7416b94c01d50e435 /lib/VMCore/AutoUpgrade.cpp | |
parent | e167af30239bdcd3ec0ffbed1f4692b4d9d07228 (diff) |
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
Diffstat (limited to 'lib/VMCore/AutoUpgrade.cpp')
-rw-r--r-- | lib/VMCore/AutoUpgrade.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/AutoUpgrade.cpp b/lib/VMCore/AutoUpgrade.cpp index 1529d1bf1f..0afb5b9951 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::cerr << "WARNING: change " << F->getName() << " to " + std::cout << "WARNING: change " << F->getName() << " to " << R->getName() << "\n"; return R; } |