summaryrefslogtreecommitdiff
path: root/test/unit.wast
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2016-08-02 20:53:48 -0700
committerAlon Zakai <alonzakai@gmail.com>2016-09-07 09:54:52 -0700
commit72616971b2a35cbc37ea974e47c870556ef8ef4d (patch)
treee9c3daeed8231fb9a4466b21cf9e05d682d11709 /test/unit.wast
parent1cc33903a0b1b9dddd40674d792a59ee0d1bccf7 (diff)
downloadbinaryen-72616971b2a35cbc37ea974e47c870556ef8ef4d.tar.gz
binaryen-72616971b2a35cbc37ea974e47c870556ef8ef4d.tar.bz2
binaryen-72616971b2a35cbc37ea974e47c870556ef8ef4d.zip
call_indirect now has the target at the end
Diffstat (limited to 'test/unit.wast')
-rw-r--r--test/unit.wast4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit.wast b/test/unit.wast
index aece78930..b4105ed0b 100644
--- a/test/unit.wast
+++ b/test/unit.wast
@@ -378,6 +378,7 @@
)
)
(call_indirect $FUNCSIG$vf
+ (get_local $x)
(i32.add
(i32.and
(i32.const 1)
@@ -385,12 +386,12 @@
)
(i32.const 8)
)
- (get_local $x)
)
)
)
(func $cneg (type $FUNCSIG$vf) (param $x f32)
(call_indirect $FUNCSIG$vf
+ (get_local $x)
(i32.add
(i32.and
(i32.const 1)
@@ -398,7 +399,6 @@
)
(i32.const 8)
)
- (get_local $x)
)
)
(func $___syscall_ret (type $FUNCSIG$v)