diff options
Diffstat (limited to 'src/wasm-interpreter.h')
-rw-r--r-- | src/wasm-interpreter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h index 2a522c732..1d8c60883 100644 --- a/src/wasm-interpreter.h +++ b/src/wasm-interpreter.h @@ -1409,8 +1409,8 @@ public: WASM_UNREACHABLE("throw"); } Flow visitRethrow(Rethrow* curr) { WASM_UNREACHABLE("unimp"); } - Flow visitI31New(I31New* curr) { - NOTE_ENTER("I31New"); + Flow visitRefI31(RefI31* curr) { + NOTE_ENTER("RefI31"); Flow flow = visit(curr->value); if (flow.breaking()) { return flow; |