Turn this error back into a warning, fixing the povray regression

llvm-svn: 18655
This commit is contained in:
Chris Lattner 2004-12-08 20:01:10 +00:00
parent 292e6602ac
commit 630729c97e
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}