Terminate an error message with a newline.

llvm-svn: 40943
This commit is contained in:
Reid Spencer 2007-08-08 21:17:59 +00:00
parent 4bd07b86ae
commit 0bc68c6e6e

View File

@ -59,7 +59,7 @@ int main(int argc, char **argv) {
MemoryBuffer *Buffer = MemoryBuffer::getFileOrSTDIN(InputFilename);
if (Buffer == 0) {
cerr << "Error reading file '" + InputFilename + "'";
cerr << argv[0] << "Error reading file '" + InputFilename + "'\n";
return 1;
} else {
M.reset(ParseBitcodeFile(Buffer));