summaryrefslogtreecommitdiff
path: root/test/passes/remove-unused-brs_enable-multivalue.txt
diff options
context:
space:
mode:
authorThomas Lively <tlively123@gmail.com>2024-12-02 15:18:57 -0800
committerGitHub <noreply@github.com>2024-12-02 23:18:57 +0000
commit74782d217ed15dd73b58b1636c563aa51334a576 (patch)
tree4a4de972ae57b23ff6e0b02fbccb853a45cde881 /test/passes/remove-unused-brs_enable-multivalue.txt
parent31c988b30556ef000bd2212754d7fc5beebf08d2 (diff)
downloadbinaryen-74782d217ed15dd73b58b1636c563aa51334a576.tar.gz
binaryen-74782d217ed15dd73b58b1636c563aa51334a576.tar.bz2
binaryen-74782d217ed15dd73b58b1636c563aa51334a576.zip
Do not sink blocks into ifs with unreachable conditions (#7129)
RemoveUnusedBrs sinks blocks into If arms when those arms contain branches to the blocks and the other arm and condition do not. Now that we type Ifs with unreachable conditions as unreachable, it is possible for the If arms to have a different type than the block that would be sunk, so sinking the block would produce invalid IR. Fix the problem by never sinking blocks into Ifs with unreachable conditions. Fixes #7128.
Diffstat (limited to 'test/passes/remove-unused-brs_enable-multivalue.txt')
-rw-r--r--test/passes/remove-unused-brs_enable-multivalue.txt26
1 files changed, 13 insertions, 13 deletions
diff --git a/test/passes/remove-unused-brs_enable-multivalue.txt b/test/passes/remove-unused-brs_enable-multivalue.txt
index 54780f0d9..a20f2905b 100644
--- a/test/passes/remove-unused-brs_enable-multivalue.txt
+++ b/test/passes/remove-unused-brs_enable-multivalue.txt
@@ -2389,12 +2389,12 @@
(loop $label$1
(br_if $label$1
(block $label$2
- (if
- (block $label$4
- (unreachable)
- )
- (then
- (block $label$3
+ (block $label$3
+ (if
+ (block $label$4
+ (unreachable)
+ )
+ (then
(br $label$3)
)
)
@@ -2405,15 +2405,15 @@
)
)
(func $if-arm-unreachable
- (if
- (unreachable)
- (then
- (block $label$1
+ (block $label$1
+ (if
+ (unreachable)
+ (then
(nop)
)
- )
- (else
- (unreachable)
+ (else
+ (unreachable)
+ )
)
)
)