diff options
author | Thomas Lively <tlively@google.com> | 2024-05-29 10:35:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-29 10:35:25 -0700 |
commit | f622b8e47c69dcbdf2666c795fb3658dc4da52af (patch) | |
tree | 27a0c58cb6b932e8251fa6dd2aa68b41f138a1a1 /test/wasm2js/func-ptr-offset.2asm.js.opt | |
parent | 525f0761496c6aafea80a2d2e8cb709515eb06c5 (diff) | |
download | binaryen-f622b8e47c69dcbdf2666c795fb3658dc4da52af.tar.gz binaryen-f622b8e47c69dcbdf2666c795fb3658dc4da52af.tar.bz2 binaryen-f622b8e47c69dcbdf2666c795fb3658dc4da52af.zip |
Use new wast parser in wasm2js (#6606)
When generating assertions, traverse the `WASTScript` data structure rather than
interleaving assertion parsing with emitting.
Diffstat (limited to 'test/wasm2js/func-ptr-offset.2asm.js.opt')
-rw-r--r-- | test/wasm2js/func-ptr-offset.2asm.js.opt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/wasm2js/func-ptr-offset.2asm.js.opt b/test/wasm2js/func-ptr-offset.2asm.js.opt index 328afa2d5..e5ad86908 100644 --- a/test/wasm2js/func-ptr-offset.2asm.js.opt +++ b/test/wasm2js/func-ptr-offset.2asm.js.opt @@ -22,14 +22,14 @@ function asmFunc(imports) { return 3; } - function $3($0) { - $0 = $0 | 0; - return FUNCTION_TABLE[$0 | 0]() | 0; + function $0($0_1) { + $0_1 = $0_1 | 0; + return FUNCTION_TABLE[$0_1 | 0]() | 0; } var FUNCTION_TABLE = [null, t1, t2, t3]; return { - "call": $3 + "call": $0 }; } |