aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPatrick Walton <[email protected]>2010-12-13 17:57:28 -0800
committerPatrick Walton <[email protected]>2010-12-13 17:59:05 -0800
commit5a1cba7883dfc2b0d84d5d5a694d7595b5f2d832 (patch)
treefed966a6417436e831d91830505c94baff09a964 /src
parentFix a couple bugs in iter_sequence, un-XFAIL vec-drop.rs. (diff)
downloadrust-5a1cba7883dfc2b0d84d5d5a694d7595b5f2d832.tar.xz
rust-5a1cba7883dfc2b0d84d5d5a694d7595b5f2d832.zip
Make failing to resolve a symbol an error
Diffstat (limited to 'src')
-rw-r--r--src/rt/rust_upcall.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_upcall.cpp b/src/rt/rust_upcall.cpp
index ebf81faf..7e2fac10 100644
--- a/src/rt/rust_upcall.cpp
+++ b/src/rt/rust_upcall.cpp
@@ -486,7 +486,7 @@ upcall_require_rust_sym(rust_task *task,
task->log(rust_log::UPCALL | rust_log::CACHE,
"found-or-cached addr: 0x%" PRIxPTR, addr);
} else {
- task->log(rust_log::UPCALL | rust_log::CACHE,
+ task->log(rust_log::UPCALL | rust_log::CACHE | rust_log::ERR,
"failed to resolve symbol");
task->fail(7);
}