Skip to content

Commit cbca5a2

Browse files
authored
fix wasm2js compilation after conflicting landings (#2209)
1 parent 26e93a4 commit cbca5a2

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/wasm2js.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1858,6 +1858,14 @@ Ref Wasm2JSBuilder::processFunctionBody(Module* m,
18581858
unimplemented(curr);
18591859
WASM_UNREACHABLE();
18601860
}
1861+
Ref visitPush(Push* curr) {
1862+
unimplemented(curr);
1863+
WASM_UNREACHABLE();
1864+
}
1865+
Ref visitPop(Pop* curr) {
1866+
unimplemented(curr);
1867+
WASM_UNREACHABLE();
1868+
}
18611869

18621870
private:
18631871
Ref makePointer(Expression* ptr, Address offset) {

0 commit comments

Comments
 (0)