Make ParseIRFile and getLazyIRFileModule incoporate the underlying

error message string into their own error message string, so that
the information isn't lost.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104887 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2010-05-27 20:47:38 +00:00
parent c2f500aaed
commit 8983846e69

View File

@ -60,7 +60,8 @@ namespace llvm {
MemoryBuffer *F = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), &ErrMsg);
if (F == 0) {
Err = SMDiagnostic(Filename,
"Could not open input file '" + Filename + "'");
"Could not open input file "
"'" + Filename + "': " + ErrMsg);
return 0;
}
@ -98,7 +99,8 @@ namespace llvm {
MemoryBuffer *F = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), &ErrMsg);
if (F == 0) {
Err = SMDiagnostic(Filename,
"Could not open input file '" + Filename + "'");
"Could not open input file "
"'" + Filename + "': " + ErrMsg);
return 0;
}