1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Don't silently ignore invalid files: tell the user!

llvm-svn: 17633
This commit is contained in:
Misha Brukman 2004-11-08 22:03:10 +00:00
parent 0efef015fa
commit f8e7ae05a9

View File

@ -345,6 +345,8 @@ bool llvm::LinkFiles(const char *progname, Module *HeadModule,
<< Pathname << "': " << ErrorMessage << "\n";
return true;
}
} else {
std::cerr << "Warning: invalid file `" << Pathname << "' ignored.\n";
}
}