mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Hrm, if there is an error loading a file, try printing a message so the
user knows that... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16524 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
907c7c7dd1
commit
48f44cf5b3
@ -80,11 +80,19 @@ int main(int argc, char **argv) {
|
||||
std::string ErrorMessage;
|
||||
|
||||
std::auto_ptr<Module> Composite(LoadFile(InputFilenames[BaseArg]));
|
||||
if (Composite.get() == 0) return 1;
|
||||
if (Composite.get() == 0) {
|
||||
std::cerr << argv[0] << ": error loading file '"
|
||||
<< InputFilenames[BaseArg] << "'\n";
|
||||
return 1;
|
||||
}
|
||||
|
||||
for (unsigned i = BaseArg+1; i < InputFilenames.size(); ++i) {
|
||||
std::auto_ptr<Module> M(LoadFile(InputFilenames[i]));
|
||||
if (M.get() == 0) return 1;
|
||||
if (M.get() == 0) {
|
||||
std::cerr << argv[0] << ": error loading file '"
|
||||
<< InputFilenames[i] << "'\n";
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (Verbose) std::cerr << "Linking in '" << InputFilenames[i] << "'\n";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user