diff options
| author | Patrick Walton <[email protected]> | 2010-12-13 17:57:28 -0800 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2010-12-13 17:59:05 -0800 |
| commit | 5a1cba7883dfc2b0d84d5d5a694d7595b5f2d832 (patch) | |
| tree | fed966a6417436e831d91830505c94baff09a964 /src | |
| parent | Fix a couple bugs in iter_sequence, un-XFAIL vec-drop.rs. (diff) | |
| download | rust-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.cpp | 2 |
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); } |