diff options
author | Chris Lattner <sabre@nondot.org> | 2004-12-08 20:01:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-12-08 20:01:10 +0000 |
commit | 630729c97e01a863e83b105f3bc85d26b5018f13 (patch) | |
tree | e48249f4249e1c7f6bbc155c47108aba4051aa15 /llvm/lib | |
parent | 292e6602ac80db6fc893986f3cf8507769967cba (diff) | |
download | bcm5719-llvm-630729c97e01a863e83b105f3bc85d26b5018f13.tar.gz bcm5719-llvm-630729c97e01a863e83b105f3bc85d26b5018f13.zip |
Turn this error back into a warning, fixing the povray regression
llvm-svn: 18655
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Linker/LinkItems.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Linker/LinkItems.cpp b/llvm/lib/Linker/LinkItems.cpp index ee290d3fb39..d055a4d0285 100644 --- a/llvm/lib/Linker/LinkItems.cpp +++ b/llvm/lib/Linker/LinkItems.cpp @@ -50,9 +50,9 @@ LinkOneLibrary(const char*progname, Module* HeadModule, // 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; } } |