diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-08-02 20:53:48 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-09-07 09:54:52 -0700 |
commit | 72616971b2a35cbc37ea974e47c870556ef8ef4d (patch) | |
tree | e9c3daeed8231fb9a4466b21cf9e05d682d11709 /test/unit.wast | |
parent | 1cc33903a0b1b9dddd40674d792a59ee0d1bccf7 (diff) | |
download | binaryen-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.wast | 4 |
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) |