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/merge/basics.wast.combined | |
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/merge/basics.wast.combined')
-rw-r--r-- | test/merge/basics.wast.combined | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/merge/basics.wast.combined b/test/merge/basics.wast.combined index ec322b100..e90b4f594 100644 --- a/test/merge/basics.wast.combined +++ b/test/merge/basics.wast.combined @@ -33,7 +33,7 @@ (call $only-a) (call $some-func) (call $some-collide) - (call_indirect $ii + (call_indirect (type $ii) (i32.const 123) (i32.const 456) (i32.const 789) @@ -67,7 +67,7 @@ (call $only-b) (call $some-func-b) (call $some-collide$0) - (call_indirect $ii$0 + (call_indirect (type $ii$0) (i32.const 12) (i32.const 34) (i32.const 56) |