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.fromasm.imprecise | |
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.fromasm.imprecise')
-rw-r--r-- | test/unit.fromasm.imprecise | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/unit.fromasm.imprecise b/test/unit.fromasm.imprecise index f81663fa1..abb6c3317 100644 --- a/test/unit.fromasm.imprecise +++ b/test/unit.fromasm.imprecise @@ -211,22 +211,22 @@ (func $neg (local $0 f32) (call_indirect $FUNCSIG$vf + (f32.neg + (get_local $0) + ) (i32.add (i32.const 1) (i32.const 8) ) - (f32.neg - (get_local $0) - ) ) ) (func $cneg (param $0 f32) (call_indirect $FUNCSIG$vf + (get_local $0) (i32.add (i32.const 1) (i32.const 8) ) - (get_local $0) ) ) (func $smallCompare (result i32) @@ -260,11 +260,11 @@ ) (func $cneg_nosemicolon (call_indirect $FUNCSIG$vi + (i32.const 1) (i32.add (i32.const 1) (i32.const 8) ) - (i32.const 1) ) ) (func $forLoop |