diff options
author | Alon Zakai <azakai@google.com> | 2021-10-19 09:07:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 09:07:40 -0700 |
commit | c19ff59c71824b34fa312aac9ad979e2198d7d36 (patch) | |
tree | c0739ad5f1b93a2e497c38f493135fd483e478dc /test/passes/remove-unused-names_merge-blocks_all-features.txt | |
parent | be02d3f0f2689475f31c4523010eed58f39d27cb (diff) | |
download | binaryen-c19ff59c71824b34fa312aac9ad979e2198d7d36.tar.gz binaryen-c19ff59c71824b34fa312aac9ad979e2198d7d36.tar.bz2 binaryen-c19ff59c71824b34fa312aac9ad979e2198d7d36.zip |
MergeBlocks: optimize If conditions (#4260)
Code in the If condition can be moved out to before the if.
Existing test updates are 99% whitespace.
Diffstat (limited to 'test/passes/remove-unused-names_merge-blocks_all-features.txt')
-rw-r--r-- | test/passes/remove-unused-names_merge-blocks_all-features.txt | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/test/passes/remove-unused-names_merge-blocks_all-features.txt b/test/passes/remove-unused-names_merge-blocks_all-features.txt index 9f15d1319..ab1837ef7 100644 --- a/test/passes/remove-unused-names_merge-blocks_all-features.txt +++ b/test/passes/remove-unused-names_merge-blocks_all-features.txt @@ -775,13 +775,11 @@ (func $block-type-change (local $0 f64) (local $1 f64) + (nop) (if - (block (result i32) - (nop) - (f64.gt - (local.get $0) - (local.get $1) - ) + (f64.gt + (local.get $0) + (local.get $1) ) (nop) ) |