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:
parent
0efef015fa
commit
f8e7ae05a9
@ -345,6 +345,8 @@ bool llvm::LinkFiles(const char *progname, Module *HeadModule,
|
|||||||
<< Pathname << "': " << ErrorMessage << "\n";
|
<< Pathname << "': " << ErrorMessage << "\n";
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
std::cerr << "Warning: invalid file `" << Pathname << "' ignored.\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user