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 9f95538 commit 79693faCopy full SHA for 79693fa
src/comp/back/link.rs
@@ -35,15 +35,15 @@ fn link_intrinsics(session::session sess, ModuleRef llmod) {
35
auto membuf =
36
llvm::LLVMRustCreateMemoryBufferWithContentsOfFile(str::buf(path));
37
if ((membuf as uint) == 0u) {
38
- llvm_err(sess, "installation problem: couldn't open intrinstics.bc");
+ llvm_err(sess, "installation problem: couldn't open " + path);
39
fail;
40
}
41
42
auto llintrinsicsmod = llvm::LLVMRustParseBitcode(membuf);
43
llvm::LLVMDisposeMemoryBuffer(membuf);
44
45
if ((llintrinsicsmod as uint) == 0u) {
46
- llvm_err(sess, "installation problem: couldn't parse intrinstics.bc");
+ llvm_err(sess, "installation problem: couldn't parse intrinsics.bc");
47
48
49
0 commit comments