diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-12-06 10:53:52 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-12-06 10:53:52 -0800 |
commit | 7fd4379192eb8d1296373ff454ea643f1b147fa0 (patch) | |
tree | 14542b20b7fc9bff4386f422bb935fd9b07297dc /test/unit.2asm.js | |
parent | fa27379216ea90f1a1c80ffbdc6d83307c3474ee (diff) | |
download | binaryen-7fd4379192eb8d1296373ff454ea643f1b147fa0.tar.gz binaryen-7fd4379192eb8d1296373ff454ea643f1b147fa0.tar.bz2 binaryen-7fd4379192eb8d1296373ff454ea643f1b147fa0.zip |
if is not statable
Diffstat (limited to 'test/unit.2asm.js')
-rw-r--r-- | test/unit.2asm.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/unit.2asm.js b/test/unit.2asm.js index 6d4df7fff..b26399728 100644 --- a/test/unit.2asm.js +++ b/test/unit.2asm.js @@ -15,11 +15,11 @@ function asmFunc() { if ((HEAPU32[24 >> 2] | 0) > (0 | 0)) { wasm2asm_f64$0 = -3.4; break topmost; - }; + } if (HEAPF64[32 >> 3] > 0.0) { wasm2asm_f64$0 = 5.6; break topmost; - }; + } wasm2asm_f64$0 = 1.2; } return wasm2asm_f64$0; @@ -33,19 +33,19 @@ function asmFunc() { if (x > 0.0) { wasm2asm_f64$0 = 1.2; break topmost; - }; + } if (Int > 0.0) { wasm2asm_f64$0 = -3.4; break topmost; - }; + } if ((Double | 0) > (0 | 0)) { wasm2asm_f64$0 = 5.6; break topmost; - }; + } if (x < y) { wasm2asm_f64$0 = x; break topmost; - }; + } wasm2asm_f64$0 = y; } return wasm2asm_f64$0; |