summaryrefslogtreecommitdiff
path: root/test/passes/ssa_fuzz-exec_enable-threads.txt
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2022-08-22 13:53:47 -0700
committerGitHub <noreply@github.com>2022-08-22 13:53:47 -0700
commit38c084ee386e257389d44c6200a403f74432e1af (patch)
tree8e41abd3ad903b9fcb426bf0c4be3dd66a092247 /test/passes/ssa_fuzz-exec_enable-threads.txt
parentb24df4d0c4705027fdc6e261aa3f8e4f61dc5c0a (diff)
downloadbinaryen-38c084ee386e257389d44c6200a403f74432e1af.tar.gz
binaryen-38c084ee386e257389d44c6200a403f74432e1af.tar.bz2
binaryen-38c084ee386e257389d44c6200a403f74432e1af.zip
Avoid adding new unneeded names to blocks in text roundtripping (#4943)
Previously the wat parser would turn this input: (block (nop) ) into something like this: (block $block17 (nop) ) It just added a name all the time, in case the block is referred to by an index later even though it doesn't have a name. This PR makes us rountrip more precisely by not adding such names: if there was no name before, and there is no break by index, then do not add a name. In addition, this will be useful for non-nullable locals since whether a block has a name or not matters there. Like #4912, this makes us more regular in our usage of block names.
Diffstat (limited to 'test/passes/ssa_fuzz-exec_enable-threads.txt')
-rw-r--r--test/passes/ssa_fuzz-exec_enable-threads.txt8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/passes/ssa_fuzz-exec_enable-threads.txt b/test/passes/ssa_fuzz-exec_enable-threads.txt
index 40845e209..6334b35a7 100644
--- a/test/passes/ssa_fuzz-exec_enable-threads.txt
+++ b/test/passes/ssa_fuzz-exec_enable-threads.txt
@@ -54,7 +54,7 @@
)
(i32.const 1)
)
- (block $block (result i32)
+ (block (result i32)
(loop $label$15
(if
(i32.const 0)
@@ -70,10 +70,8 @@
)
)
)
- (block $block4
- (br_if $label$15
- (i32.const 0)
- )
+ (br_if $label$15
+ (i32.const 0)
)
)
(br_if $label$15