diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-10-27 09:19:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-27 09:19:16 -0700 |
commit | afad1ee305719cf2a34b6dcccff72b07e1a5e34d (patch) | |
tree | e9900a4b3e26b83d6747523f23bb28180a8a6c6d /test/memorygrowth.fromasm.imprecise | |
parent | 7047ed25b3ca34aeddb67d0082a998fec0841372 (diff) | |
download | binaryen-afad1ee305719cf2a34b6dcccff72b07e1a5e34d.tar.gz binaryen-afad1ee305719cf2a34b6dcccff72b07e1a5e34d.tar.bz2 binaryen-afad1ee305719cf2a34b6dcccff72b07e1a5e34d.zip |
optimize ne of 0 in a boolean context (#808)
Diffstat (limited to 'test/memorygrowth.fromasm.imprecise')
-rw-r--r-- | test/memorygrowth.fromasm.imprecise | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/test/memorygrowth.fromasm.imprecise b/test/memorygrowth.fromasm.imprecise index a6af9df0e..f9fa51bce 100644 --- a/test/memorygrowth.fromasm.imprecise +++ b/test/memorygrowth.fromasm.imprecise @@ -3726,13 +3726,10 @@ ) ) (br_if $do-in41 - (i32.ne - (tee_local $2 - (i32.load offset=8 - (get_local $2) - ) + (tee_local $2 + (i32.load offset=8 + (get_local $2) ) - (i32.const 0) ) ) ) |