mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 04:09:45 +00:00
Don't print the filename twice in file-not-found errors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110179 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
12cf5018be
commit
5825545553
@ -60,8 +60,7 @@ namespace llvm {
|
||||
MemoryBuffer *F = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), &ErrMsg);
|
||||
if (F == 0) {
|
||||
Err = SMDiagnostic(Filename,
|
||||
"Could not open input file "
|
||||
"'" + Filename + "': " + ErrMsg);
|
||||
"Could not open input file: " + ErrMsg);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -99,8 +98,7 @@ namespace llvm {
|
||||
MemoryBuffer *F = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), &ErrMsg);
|
||||
if (F == 0) {
|
||||
Err = SMDiagnostic(Filename,
|
||||
"Could not open input file "
|
||||
"'" + Filename + "': " + ErrMsg);
|
||||
"Could not open input file: " + ErrMsg);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -45,8 +45,7 @@ Module *llvm::ParseAssemblyFile(const std::string &Filename, SMDiagnostic &Err,
|
||||
MemoryBuffer *F = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), &ErrorStr);
|
||||
if (F == 0) {
|
||||
Err = SMDiagnostic(Filename,
|
||||
"Could not open input file '" + Filename + "': " +
|
||||
ErrorStr);
|
||||
"Could not open input file: " + ErrorStr);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user