diff options
author | Alon Zakai <azakai@google.com> | 2024-10-04 08:43:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-04 08:43:17 -0700 |
commit | cbad8ec02680710001ebdc7157e487c54e9b4c66 (patch) | |
tree | 130ed8cea4a33e1d8a9e5490427c06dca7abf588 /test/lit/passes/vacuum-eh.wast | |
parent | 7f30b6c4c0af98642a8f22cbd4e61ff688f9e9fe (diff) | |
download | binaryen-cbad8ec02680710001ebdc7157e487c54e9b4c66.tar.gz binaryen-cbad8ec02680710001ebdc7157e487c54e9b4c66.tar.bz2 binaryen-cbad8ec02680710001ebdc7157e487c54e9b4c66.zip |
RemoveUnusedBrs: Generalize jump threading optimizations to all branches (#6983)
This change is NFC on all things we previously optimized, but also makes
us optimize TryTable, BrOn, etc., by replacing hard-coded logic for Break
with generic code.
Also simplify the code there a little - we didn't really need ControlFlowWalker.
Diffstat (limited to 'test/lit/passes/vacuum-eh.wast')
-rw-r--r-- | test/lit/passes/vacuum-eh.wast | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/lit/passes/vacuum-eh.wast b/test/lit/passes/vacuum-eh.wast index d42fed56b..4df41f854 100644 --- a/test/lit/passes/vacuum-eh.wast +++ b/test/lit/passes/vacuum-eh.wast @@ -154,7 +154,6 @@ ;; try_table could be optimized out. We do this for `try` but not for ;; `try_table` - we leave such optimizations to --remove-unused-brs (that ;; pass can see that the throw can be converted to a br). - (block $catch (try_table (catch_all $catch) (throw $e (i32.const 0)) |