diff options
| author | Graydon Hoare <[email protected]> | 2010-07-22 15:25:29 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-07-22 15:25:29 -0700 |
| commit | 1cb4a57b7b2fda8db6a225207c9b9c090ba565d1 (patch) | |
| tree | d7219c8333973406ea5f2cb9d9fd848d189bede1 /src/boot/me/walk.ml | |
| parent | Beat up on the preempt test a bit more, as it keeps hanging under valgrind. (diff) | |
| download | rust-1cb4a57b7b2fda8db6a225207c9b9c090ba565d1.tar.xz rust-1cb4a57b7b2fda8db6a225207c9b9c090ba565d1.zip | |
Re-classify some err / bug cases as unimpl. Ideally rustboot should never produce a backtrace.
Diffstat (limited to 'src/boot/me/walk.ml')
| -rw-r--r-- | src/boot/me/walk.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/me/walk.ml b/src/boot/me/walk.ml index fac44170..acdb9371 100644 --- a/src/boot/me/walk.ml +++ b/src/boot/me/walk.ml @@ -523,7 +523,7 @@ and walk_stmt | Ast.STMT_note _ | Ast.STMT_alt_type _ | Ast.STMT_alt_port _ -> - bug () "unimplemented statement type in Walk.walk_stmt" + unimpl (Some s.id) "statement type in Walk.walk_stmt" in walk_bracketed v.visit_stmt_pre |