diff options
author | Alon Zakai <azakai@google.com> | 2019-07-08 16:36:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-08 16:36:17 -0700 |
commit | cbca5a29865e93ba543d1ede1b13bcc8f32bc1fd (patch) | |
tree | 858280f53d5c61bfba30378391b82639e4813ec9 /src | |
parent | 26e93a4d6b53dac0ddef3ad62b7a41c9a746ed00 (diff) | |
download | binaryen-cbca5a29865e93ba543d1ede1b13bcc8f32bc1fd.tar.gz binaryen-cbca5a29865e93ba543d1ede1b13bcc8f32bc1fd.tar.bz2 binaryen-cbca5a29865e93ba543d1ede1b13bcc8f32bc1fd.zip |
fix wasm2js compilation after conflicting landings (#2209)
Diffstat (limited to 'src')
-rw-r--r-- | src/wasm2js.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/wasm2js.h b/src/wasm2js.h index b82b3f152..9936f492e 100644 --- a/src/wasm2js.h +++ b/src/wasm2js.h @@ -1858,6 +1858,14 @@ Ref Wasm2JSBuilder::processFunctionBody(Module* m, unimplemented(curr); WASM_UNREACHABLE(); } + Ref visitPush(Push* curr) { + unimplemented(curr); + WASM_UNREACHABLE(); + } + Ref visitPop(Pop* curr) { + unimplemented(curr); + WASM_UNREACHABLE(); + } private: Ref makePointer(Expression* ptr, Address offset) { |