diff options
Diffstat (limited to 'test/passes/merge-blocks.wast')
-rw-r--r-- | test/passes/merge-blocks.wast | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/passes/merge-blocks.wast b/test/passes/merge-blocks.wast index 4b2f248e2..e998060c4 100644 --- a/test/passes/merge-blocks.wast +++ b/test/passes/merge-blocks.wast @@ -69,5 +69,18 @@ ) ) ) + (func $drop-block-squared-iloop + (drop + (block $label$0 (result i32) ;; this block's type should not change, so the drop remains none and valid + (drop + (block $label$1 + (loop $label$2 + (br $label$2) + ) + ) + ) + ) + ) + ) ) |