summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2019-07-08 16:36:17 -0700
committerGitHub <noreply@github.com>2019-07-08 16:36:17 -0700
commitcbca5a29865e93ba543d1ede1b13bcc8f32bc1fd (patch)
tree858280f53d5c61bfba30378391b82639e4813ec9 /src
parent26e93a4d6b53dac0ddef3ad62b7a41c9a746ed00 (diff)
downloadbinaryen-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.h8
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) {