summaryrefslogtreecommitdiff
path: root/test/passes/remove-unused-names.txt
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2020-04-24 14:22:21 -0700
committerGitHub <noreply@github.com>2020-04-24 14:22:21 -0700
commit99708992211d82dd7f157b2dda6dd81e59671378 (patch)
tree61371dccaa07cf06271dccb54fffb8947411f2eb /test/passes/remove-unused-names.txt
parent8e7a5c2bd2e8f296d840cc1ab76b1712609e71d8 (diff)
downloadbinaryen-99708992211d82dd7f157b2dda6dd81e59671378.tar.gz
binaryen-99708992211d82dd7f157b2dda6dd81e59671378.tar.bz2
binaryen-99708992211d82dd7f157b2dda6dd81e59671378.zip
Fix RemoveUnusedNames on a loop with no name and a child with a different type. fixes #2807 (#2808)
Diffstat (limited to 'test/passes/remove-unused-names.txt')
-rw-r--r--test/passes/remove-unused-names.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/passes/remove-unused-names.txt b/test/passes/remove-unused-names.txt
index 27b9cc76c..43950ca26 100644
--- a/test/passes/remove-unused-names.txt
+++ b/test/passes/remove-unused-names.txt
@@ -78,4 +78,11 @@
)
)
)
+ (func $loop-with-child-of-other-type
+ (drop
+ (loop (result i32)
+ (unreachable)
+ )
+ )
+ )
)