diff options
author | JF Bastien <github@jfbastien.com> | 2016-02-05 14:14:10 +0100 |
---|---|---|
committer | JF Bastien <github@jfbastien.com> | 2016-02-05 14:14:10 +0100 |
commit | 9cfdb12d4976e4a9fbf6d902065904ffa48bdbec (patch) | |
tree | aae2c28eb1cc465a4582208d6c713584a51a1bcf /test/unit.wast.fromBinary | |
parent | 8f67b6e27a38c93fbca7f3c44a88889b3896952f (diff) | |
parent | 7459e5af01fbe3a8e75e73783794b4cdffda34e9 (diff) | |
download | binaryen-9cfdb12d4976e4a9fbf6d902065904ffa48bdbec.tar.gz binaryen-9cfdb12d4976e4a9fbf6d902065904ffa48bdbec.tar.bz2 binaryen-9cfdb12d4976e4a9fbf6d902065904ffa48bdbec.zip |
Merge pull request #187 from WebAssembly/select
Fix select
Diffstat (limited to 'test/unit.wast.fromBinary')
-rw-r--r-- | test/unit.wast.fromBinary | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/unit.wast.fromBinary b/test/unit.wast.fromBinary index 7c5e00b94..a56e5a672 100644 --- a/test/unit.wast.fromBinary +++ b/test/unit.wast.fromBinary @@ -314,15 +314,15 @@ (i32.const 0) ) (i32.select - (i32.lt_s - (get_local $var$1) - (i32.const 0) - ) (i32.sub (i32.const 0) (get_local $var$1) ) (get_local $var$1) + (i32.lt_s + (get_local $var$1) + (i32.const 0) + ) ) ) ) |