mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
no need to check readability here
llvm-svn: 29449
This commit is contained in:
parent
ceecdbc08e
commit
bbcb37f911
@ -119,7 +119,7 @@ void DumpSymbolNamesFromModule (Module *M) {
|
||||
void DumpSymbolNamesFromFile (std::string &Filename) {
|
||||
std::string ErrorMessage;
|
||||
sys::Path aPath(Filename);
|
||||
if (Filename != "-" && !aPath.canRead()) {
|
||||
if (Filename != "-") {
|
||||
std::cerr << ToolName << ": " << Filename << ": " << strerror (errno)
|
||||
<< "\n";
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user