diff options
author | Derek Schuff <dschuff@chromium.org> | 2017-11-13 15:18:30 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-13 15:18:30 -0800 |
commit | ca09203416a556f0a895f6cfa32426bdd46f9824 (patch) | |
tree | 263697a28594c67424472a7410d256994476f4de /test/emcc_hello_world.fromasm.imprecise | |
parent | 20b8b02ff331f8b59d44e2a72ebd6f81e08f49ac (diff) | |
download | binaryen-ca09203416a556f0a895f6cfa32426bdd46f9824.tar.gz binaryen-ca09203416a556f0a895f6cfa32426bdd46f9824.tar.bz2 binaryen-ca09203416a556f0a895f6cfa32426bdd46f9824.zip |
Update call_indirect text syntax to match spec update (#1281)
Function type gets its own element rather than being a part of the call_indirect
(see WebAssembly/spec#599)
Diffstat (limited to 'test/emcc_hello_world.fromasm.imprecise')
-rw-r--r-- | test/emcc_hello_world.fromasm.imprecise | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/emcc_hello_world.fromasm.imprecise b/test/emcc_hello_world.fromasm.imprecise index 1e2661d37..bcc64a662 100644 --- a/test/emcc_hello_world.fromasm.imprecise +++ b/test/emcc_hello_world.fromasm.imprecise @@ -1270,7 +1270,7 @@ (get_local $13) (block (drop - (call_indirect $FUNCSIG$iiii + (call_indirect (type $FUNCSIG$iiii) (get_local $0) (i32.const 0) (i32.const 0) @@ -1410,7 +1410,7 @@ ) (block (set_local $3 - (call_indirect $FUNCSIG$iiii + (call_indirect (type $FUNCSIG$iiii) (get_local $2) (get_local $0) (get_local $1) @@ -1475,7 +1475,7 @@ ) (br_if $label$break$L5 (i32.lt_u - (call_indirect $FUNCSIG$iiii + (call_indirect (type $FUNCSIG$iiii) (get_local $2) (get_local $0) (get_local $3) @@ -2084,7 +2084,7 @@ ) ) (drop - (call_indirect $FUNCSIG$iiii + (call_indirect (type $FUNCSIG$iiii) (get_local $0) (i32.const 0) (i32.const 0) @@ -2132,7 +2132,7 @@ ) ) (drop - (call_indirect $FUNCSIG$iiii + (call_indirect (type $FUNCSIG$iiii) (get_local $0) (i32.sub (get_local $4) @@ -15556,7 +15556,7 @@ ) ) (func $dynCall_ii (; 62 ;) (param $0 i32) (param $1 i32) (result i32) - (call_indirect $FUNCSIG$ii + (call_indirect (type $FUNCSIG$ii) (get_local $1) (i32.and (get_local $0) @@ -15565,7 +15565,7 @@ ) ) (func $dynCall_iiii (; 63 ;) (param $0 i32) (param $1 i32) (param $2 i32) (param $3 i32) (result i32) - (call_indirect $FUNCSIG$iiii + (call_indirect (type $FUNCSIG$iiii) (get_local $1) (get_local $2) (get_local $3) @@ -15579,7 +15579,7 @@ ) ) (func $dynCall_vi (; 64 ;) (param $0 i32) (param $1 i32) - (call_indirect $FUNCSIG$vi + (call_indirect (type $FUNCSIG$vi) (get_local $1) (i32.add (i32.and |