diff options
author | Alon Zakai (kripken) <alonzakai@gmail.com> | 2018-12-02 08:22:33 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2018-12-04 10:14:29 -0800 |
commit | b4badb815ec844e438a05d501eafb6bb99383bc6 (patch) | |
tree | b1f16bc9c644b48e7c7f9fb226bb50d7b5be3f6a /test/unit.fromasm.imprecise | |
parent | f5b8221e9759c37ef44158c2d2858dcee51b6c1f (diff) | |
download | binaryen-b4badb815ec844e438a05d501eafb6bb99383bc6.tar.gz binaryen-b4badb815ec844e438a05d501eafb6bb99383bc6.tar.bz2 binaryen-b4badb815ec844e438a05d501eafb6bb99383bc6.zip |
Run coalesce-locals after the final simplify-locals.
We now emit more sets and tees of if-elses from simplify-locals, and
coalesce-locals is necessary to remove them if they are ineffectual,
that is, if no get will read them.
Diffstat (limited to 'test/unit.fromasm.imprecise')
-rw-r--r-- | test/unit.fromasm.imprecise | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/test/unit.fromasm.imprecise b/test/unit.fromasm.imprecise index a56482591..e1e379885 100644 --- a/test/unit.fromasm.imprecise +++ b/test/unit.fromasm.imprecise @@ -232,7 +232,7 @@ ) ) (func $smallCompare (; 18 ;) (; has Stack IR ;) (param $0 i32) (param $1 i32) (result i32) - (if + (if (result i32) (i32.lt_u (tee_local $0 (select @@ -249,14 +249,12 @@ ) (get_local $1) ) - (set_local $0 - (i32.add - (get_local $0) - (i32.const 1) - ) + (i32.add + (get_local $0) + (i32.const 1) ) + (get_local $0) ) - (get_local $0) ) (func $cneg_nosemicolon (; 19 ;) (; has Stack IR ;) (call_indirect (type $FUNCSIG$vi) |