diff options
author | Alon Zakai <alonzakai@gmail.com> | 2019-04-17 10:34:54 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-17 10:34:54 -0700 |
commit | f75cf7fe9a70ec7041f758f061ac45deed18f4ab (patch) | |
tree | 6388084bdb173b613e57cc0661d58ac7de45d690 /test/wasm2js/f32.2asm.js | |
parent | 4a1a935ff0e30c9e46f4b7469488a5b6ffee2714 (diff) | |
download | binaryen-f75cf7fe9a70ec7041f758f061ac45deed18f4ab.tar.gz binaryen-f75cf7fe9a70ec7041f758f061ac45deed18f4ab.tar.bz2 binaryen-f75cf7fe9a70ec7041f758f061ac45deed18f4ab.zip |
Fix if else JS printing when if body is a labelled block (#2017)
Before, we'd print
if (..) label: { .. }; else ..
But that is wrong, as it ends the if too early. After this, we print
if (..) label: { .. } else ..
The bug was we checked if the if body was a block, but not if it was a labelled block.
Diffstat (limited to 'test/wasm2js/f32.2asm.js')
-rw-r--r-- | test/wasm2js/f32.2asm.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/wasm2js/f32.2asm.js b/test/wasm2js/f32.2asm.js index ff8f2d94a..3d45f0f0d 100644 --- a/test/wasm2js/f32.2asm.js +++ b/test/wasm2js/f32.2asm.js @@ -109,7 +109,7 @@ function asmFunc(global, env, buffer) { if (var$2 > Math_fround(.5)) return Math_fround(var$0); var$2 = Math_fround(var$1 * Math_fround(.5)); var$1 = (wasm2js_f32$0 = var$1, wasm2js_f32$1 = var$0, wasm2js_i32$0 = Math_fround(var$2 - Math_fround(Math_floor(var$2))) == Math_fround(0.0), wasm2js_i32$0 ? wasm2js_f32$0 : wasm2js_f32$1); - }; + } return Math_fround(var$1); } |