diff options
Diffstat (limited to 'src/passes/InstrumentLocals.cpp')
-rw-r--r-- | src/passes/InstrumentLocals.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/passes/InstrumentLocals.cpp b/src/passes/InstrumentLocals.cpp index 6e12b0f3a..0b21c5000 100644 --- a/src/passes/InstrumentLocals.cpp +++ b/src/passes/InstrumentLocals.cpp @@ -92,9 +92,8 @@ struct InstrumentLocals : public WalkerPass<PostWalker<InstrumentLocals>> { import = get_exnref; break; case none: - WASM_UNREACHABLE(); case unreachable: - WASM_UNREACHABLE(); + WASM_UNREACHABLE("unexpected type"); } replaceCurrent( builder.makeCall(import, @@ -137,7 +136,7 @@ struct InstrumentLocals : public WalkerPass<PostWalker<InstrumentLocals>> { case unreachable: return; // nothing to do here case none: - WASM_UNREACHABLE(); + WASM_UNREACHABLE("unexpected type"); } curr->value = builder.makeCall(import, |