summaryrefslogtreecommitdiff
path: root/test/unit.fromasm.imprecise.no-opts
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2017-05-09 16:04:30 -0700
committerGitHub <noreply@github.com>2017-05-09 16:04:30 -0700
commit647271a97ac534320ef5477367d1eb511afdebd5 (patch)
tree5f8a31c217323fbc2128e5df4aa491abdc76dada /test/unit.fromasm.imprecise.no-opts
parent64aa81e0e9655cf16e3af65e1bbe98e7fc6cf974 (diff)
downloadbinaryen-647271a97ac534320ef5477367d1eb511afdebd5.tar.gz
binaryen-647271a97ac534320ef5477367d1eb511afdebd5.tar.bz2
binaryen-647271a97ac534320ef5477367d1eb511afdebd5.zip
fix autoDrop, now that we properly set block types, unreachable can easily happen, and autoDrop wasn't handling it (#1005)
Diffstat (limited to 'test/unit.fromasm.imprecise.no-opts')
-rw-r--r--test/unit.fromasm.imprecise.no-opts39
1 files changed, 39 insertions, 0 deletions
diff --git a/test/unit.fromasm.imprecise.no-opts b/test/unit.fromasm.imprecise.no-opts
index 736f51222..f49a6f29f 100644
--- a/test/unit.fromasm.imprecise.no-opts
+++ b/test/unit.fromasm.imprecise.no-opts
@@ -1885,6 +1885,40 @@
)
)
)
+ (func $autoDrop (param $x i32) (result i32)
+ (loop $while-in
+ (block $while-out
+ (if
+ (i32.eq
+ (get_local $x)
+ (i32.const 17)
+ )
+ (block
+ (return
+ (i32.const 5)
+ )
+ (drop
+ (call $autoDrop
+ (i32.const 1)
+ )
+ )
+ )
+ (block
+ (br $while-out)
+ (set_local $x
+ (call $autoDrop
+ (i32.const 2)
+ )
+ )
+ )
+ )
+ (br $while-in)
+ )
+ )
+ (return
+ (get_local $x)
+ )
+ )
(func $keepAlive
(drop
(call $sqrts
@@ -1901,6 +1935,11 @@
(f64.const 100)
)
)
+ (drop
+ (call $autoDrop
+ (i32.const 52)
+ )
+ )
)
(func $v
(nop)