diff options
author | Alon Zakai <azakai@google.com> | 2019-04-25 10:35:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-25 10:35:22 -0700 |
commit | ef6020cd5fbf9af61e7fdc17a5c787fc733f793d (patch) | |
tree | 4fa531d168f304f050c73abb549a3de079f8a05d /test/wasm2js/block.2asm.js | |
parent | 09945884f7461135286357d14f993f9b5c5a329b (diff) | |
download | binaryen-ef6020cd5fbf9af61e7fdc17a5c787fc733f793d.tar.gz binaryen-ef6020cd5fbf9af61e7fdc17a5c787fc733f793d.tar.bz2 binaryen-ef6020cd5fbf9af61e7fdc17a5c787fc733f793d.zip |
wasm2js: optimize loops and eqz (#2051)
Diffstat (limited to 'test/wasm2js/block.2asm.js')
-rw-r--r-- | test/wasm2js/block.2asm.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/wasm2js/block.2asm.js b/test/wasm2js/block.2asm.js index d08822100..b7684456c 100644 --- a/test/wasm2js/block.2asm.js +++ b/test/wasm2js/block.2asm.js @@ -68,7 +68,7 @@ function asmFunc(global, env, buffer) { function $8() { dummy(); - return (13 | 0) == (0 | 0) | 0; + return !13 | 0; } function $9() { |