[llvm-commits] CVS: llvm/lib/Linker/LinkItems.cpp
Chris Lattner
lattner at cs.uiuc.edu
Wed Dec 8 12:01:24 PST 2004
Changes in directory llvm/lib/Linker:
LinkItems.cpp updated: 1.1 -> 1.2
---
Log message:
Turn this error back into a warning, fixing the povray regression
---
Diffs of the changes: (+2 -2)
Index: llvm/lib/Linker/LinkItems.cpp
diff -u llvm/lib/Linker/LinkItems.cpp:1.1 llvm/lib/Linker/LinkItems.cpp:1.2
--- llvm/lib/Linker/LinkItems.cpp:1.1 Sun Dec 5 13:14:55 2004
+++ llvm/lib/Linker/LinkItems.cpp Wed Dec 8 14:01:10 2004
@@ -50,9 +50,9 @@
// If the pathname does not exist, then simply return if we're doing a
// native link and give a warning if we're doing a bytecode link.
if (!Native) {
- std::cerr << progname << ": error: Cannot find library '"
+ std::cerr << progname << ": warning: Cannot find library '"
<< Lib << "'\n";
- return true;
+ return false;
}
}
More information about the llvm-commits
mailing list