We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d877f2a commit caf0ab6Copy full SHA for caf0ab6
llvm/include/llvm/Support/IRReader.h
@@ -60,7 +60,8 @@ namespace llvm {
60
MemoryBuffer *F = MemoryBuffer::getFileOrSTDIN(Filename.c_str(), &ErrMsg);
61
if (F == 0) {
62
Err = SMDiagnostic(Filename,
63
- "Could not open input file '" + Filename + "'");
+ "Could not open input file "
64
+ "'" + Filename + "': " + ErrMsg);
65
return 0;
66
}
67
@@ -98,7 +99,8 @@ namespace llvm {
98
99
100
101
102
103
104
105
106
0 commit comments