[llvm-commits] CVS: llvm/lib/VMCore/AutoUpgrade.cpp
Reid Spencer
reid at x10sys.com
Tue May 30 09:35:11 PDT 2006
Changes in directory llvm/lib/VMCore:
AutoUpgrade.cpp updated: 1.19 -> 1.20
---
Log message:
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.
---
Diffs of the changes: (+1 -1)
AutoUpgrade.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/VMCore/AutoUpgrade.cpp
diff -u llvm/lib/VMCore/AutoUpgrade.cpp:1.19 llvm/lib/VMCore/AutoUpgrade.cpp:1.20
--- llvm/lib/VMCore/AutoUpgrade.cpp:1.19 Tue May 30 11:05:59 2006
+++ llvm/lib/VMCore/AutoUpgrade.cpp Tue May 30 11:34:59 2006
@@ -193,7 +193,7 @@
// 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;
}
More information about the llvm-commits
mailing list