diff options
author | Alon Zakai <azakai@google.com> | 2022-06-29 16:05:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-29 16:05:10 -0700 |
commit | 19f4db6ef5263a578baef7e64bf9c9169bb771e6 (patch) | |
tree | d9608e8483415332b744701a714ec83d8e8009fb /src/wasm2js.h | |
parent | d252c3e9e5dee98150c5ac625b6deb0e95139ede (diff) | |
download | binaryen-19f4db6ef5263a578baef7e64bf9c9169bb771e6.tar.gz binaryen-19f4db6ef5263a578baef7e64bf9c9169bb771e6.tar.bz2 binaryen-19f4db6ef5263a578baef7e64bf9c9169bb771e6.zip |
[Strings] Add string.new* instructions (#4761)
This is the first instruction from the Strings proposal.
This includes everything but interpreter support.
Diffstat (limited to 'src/wasm2js.h')
-rw-r--r-- | src/wasm2js.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wasm2js.h b/src/wasm2js.h index 5b98362ad..c2b71aa7a 100644 --- a/src/wasm2js.h +++ b/src/wasm2js.h @@ -2303,6 +2303,10 @@ Ref Wasm2JSBuilder::processFunctionBody(Module* m, unimplemented(curr); WASM_UNREACHABLE("unimp"); } + Ref visitStringNew(StringNew* curr) { + unimplemented(curr); + WASM_UNREACHABLE("unimp"); + } Ref visitRefAs(RefAs* curr) { unimplemented(curr); WASM_UNREACHABLE("unimp"); |