summaryrefslogtreecommitdiff
path: root/src/wasm-interpreter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm-interpreter.h')
-rw-r--r--src/wasm-interpreter.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h
index f683f9b38..53345f0ab 100644
--- a/src/wasm-interpreter.h
+++ b/src/wasm-interpreter.h
@@ -1048,6 +1048,10 @@ public:
Flow visitAtomicNotify(AtomicNotify*) { WASM_UNREACHABLE(); }
Flow visitPush(Push*) { WASM_UNREACHABLE(); }
Flow visitPop(Pop*) { WASM_UNREACHABLE(); }
+ Flow visitTry(Try*) { WASM_UNREACHABLE(); }
+ Flow visitThrow(Throw*) { WASM_UNREACHABLE(); }
+ Flow visitRethrow(Rethrow*) { WASM_UNREACHABLE(); }
+ Flow visitBrOnExn(BrOnExn*) { WASM_UNREACHABLE(); }
virtual void trap(const char* why) { WASM_UNREACHABLE(); }
};