diff options
author | Alon Zakai <alonzakai@gmail.com> | 2017-02-16 22:11:13 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-16 22:11:13 -0800 |
commit | 0728a53fb6bf0540b9789c7bcd26e195800c5ecc (patch) | |
tree | c615e78f96e79b121e92b598335b9e361a8025d4 /test/emcc_hello_world.fromasm | |
parent | a78dddbcf2bf9f23840c7074ce16c04a8d55c3df (diff) | |
download | binaryen-0728a53fb6bf0540b9789c7bcd26e195800c5ecc.tar.gz binaryen-0728a53fb6bf0540b9789c7bcd26e195800c5ecc.tar.bz2 binaryen-0728a53fb6bf0540b9789c7bcd26e195800c5ecc.zip |
optimize linear sums (#904)
Diffstat (limited to 'test/emcc_hello_world.fromasm')
-rw-r--r-- | test/emcc_hello_world.fromasm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/test/emcc_hello_world.fromasm b/test/emcc_hello_world.fromasm index b3d40099f..5ac7af9f6 100644 --- a/test/emcc_hello_world.fromasm +++ b/test/emcc_hello_world.fromasm @@ -5206,15 +5206,12 @@ (i32.add (i32.add (get_local $8) - (i32.const 4) - ) - (i32.shl - (i32.add + (i32.shl (get_local $13) - (i32.const -1024) + (i32.const 2) ) - (i32.const 2) ) + (i32.const -4092) ) ) ) |