summaryrefslogtreecommitdiff
path: root/test/passes/remove-unused-names_merge-blocks_all-features.txt
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2021-10-19 09:07:40 -0700
committerGitHub <noreply@github.com>2021-10-19 09:07:40 -0700
commitc19ff59c71824b34fa312aac9ad979e2198d7d36 (patch)
treec0739ad5f1b93a2e497c38f493135fd483e478dc /test/passes/remove-unused-names_merge-blocks_all-features.txt
parentbe02d3f0f2689475f31c4523010eed58f39d27cb (diff)
downloadbinaryen-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.txt10
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)
)