forked from OSchip/llvm-project
Don't silently ignore invalid files: tell the user!
llvm-svn: 17633
This commit is contained in:
parent
068c0cf56a
commit
465e7fb8ef
|
@ -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";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue