[llvm-commits] CVS: llvm/lib/Transforms/IPO/FunctionResolution.cpp
Chris Lattner
lattner at cs.uiuc.edu
Wed Sep 29 17:12:44 PDT 2004
Changes in directory llvm/lib/Transforms/IPO:
FunctionResolution.cpp updated: 1.53 -> 1.54
---
Log message:
Disable the 'WARNING: Found global types that are not compatible' warning
that always prints when linking programs to libstdc++ :(
---
Diffs of the changes: (+1 -1)
Index: llvm/lib/Transforms/IPO/FunctionResolution.cpp
diff -u llvm/lib/Transforms/IPO/FunctionResolution.cpp:1.53 llvm/lib/Transforms/IPO/FunctionResolution.cpp:1.54
--- llvm/lib/Transforms/IPO/FunctionResolution.cpp:1.53 Sun Sep 19 23:43:34 2004
+++ llvm/lib/Transforms/IPO/FunctionResolution.cpp Wed Sep 29 19:12:29 2004
@@ -247,7 +247,7 @@
}
}
- if (!DontPrintWarning) {
+ if (0 && !DontPrintWarning) {
std::cerr << "WARNING: Found global types that are not compatible:\n";
for (unsigned i = 0; i < Globals.size(); ++i) {
std::cerr << "\t";
More information about the llvm-commits
mailing list