diff options
author | Alon Zakai <azakai@google.com> | 2022-11-03 09:25:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-03 09:25:23 -0700 |
commit | daeac1e0735452d54c8b16b51cac88165d0d4eab (patch) | |
tree | b79bf240ef71c6ff9b2acd33fa25f082030202d4 /test/lit/passes/inlining-optimizing_optimize-level=3.wast | |
parent | fe78fe116a67ae37d0e6d4597832042d3cbff230 (diff) | |
download | binaryen-daeac1e0735452d54c8b16b51cac88165d0d4eab.tar.gz binaryen-daeac1e0735452d54c8b16b51cac88165d0d4eab.tar.bz2 binaryen-daeac1e0735452d54c8b16b51cac88165d0d4eab.zip |
RedundantSetElimination: Look at fallthrough values (#5213)
This can help in rare cases in MVP wasm, say for the return value of a block. But for
wasm GC it is very important due to casts.
Similar logic was added as part of #5194 for SimplifyLocals. It should probably have
been in a separate PR then. This does the right thing for RedundantSetElimination,
as a separate PR. Full tests will appear in that later PR (it is not really possible to test
the GC side yet - we need the logic in the later PR that actually switches to a more
refined local index when available).
Diffstat (limited to 'test/lit/passes/inlining-optimizing_optimize-level=3.wast')
-rw-r--r-- | test/lit/passes/inlining-optimizing_optimize-level=3.wast | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/lit/passes/inlining-optimizing_optimize-level=3.wast b/test/lit/passes/inlining-optimizing_optimize-level=3.wast index a33f3bf2e..cd9629009 100644 --- a/test/lit/passes/inlining-optimizing_optimize-level=3.wast +++ b/test/lit/passes/inlining-optimizing_optimize-level=3.wast @@ -4523,9 +4523,6 @@ ;; CHECK-NEXT: (i32.const 32) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) - ;; CHECK-NEXT: (local.set $6 - ;; CHECK-NEXT: (local.get $1) - ;; CHECK-NEXT: ) ;; CHECK-NEXT: (local.get $9) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) |