diff options
author | Alon Zakai <azakai@google.com> | 2020-04-24 14:22:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-24 14:22:21 -0700 |
commit | 99708992211d82dd7f157b2dda6dd81e59671378 (patch) | |
tree | 61371dccaa07cf06271dccb54fffb8947411f2eb /test | |
parent | 8e7a5c2bd2e8f296d840cc1ab76b1712609e71d8 (diff) | |
download | binaryen-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')
-rw-r--r-- | test/passes/remove-unused-names.txt | 7 | ||||
-rw-r--r-- | test/passes/remove-unused-names.wast | 9 |
2 files changed, 16 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) + ) + ) + ) ) diff --git a/test/passes/remove-unused-names.wast b/test/passes/remove-unused-names.wast index a4c240f02..766a56bec 100644 --- a/test/passes/remove-unused-names.wast +++ b/test/passes/remove-unused-names.wast @@ -93,4 +93,13 @@ ) ) ) + (func $loop-with-child-of-other-type + (drop + (loop (result i32) ;; the loop has no name, but can't be replaced by the child + (block $l ;; as the type differs + (unreachable) + ) + ) + ) + ) ) |