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

Output the program name (in this case, gccld) with warning about invalid files

llvm-svn: 17638
This commit is contained in:
Misha Brukman 2004-11-09 04:24:59 +00:00
parent 398bd2b9f6
commit a0f0b891d5

View File

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