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/reduce | |
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/reduce')
-rw-r--r-- | test/reduce/memory_table.wast | 4 | ||||
-rw-r--r-- | test/reduce/memory_table.wast.txt | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/reduce/memory_table.wast b/test/reduce/memory_table.wast index 9e8ad4445..129d95155 100644 --- a/test/reduce/memory_table.wast +++ b/test/reduce/memory_table.wast @@ -23,8 +23,8 @@ ) (func $f4 (result i32) (i32.add - (call_indirect $i (i32.const 3)) - (call_indirect $i (i32.const 0)) + (call_indirect (type $i) (i32.const 3)) + (call_indirect (type $i) (i32.const 0)) ) ) ) diff --git a/test/reduce/memory_table.wast.txt b/test/reduce/memory_table.wast.txt index 0a9a8a9e4..c8a265b1b 100644 --- a/test/reduce/memory_table.wast.txt +++ b/test/reduce/memory_table.wast.txt @@ -9,10 +9,10 @@ (export "f4" (func $0)) (func $0 (; 0 ;) (type $0) (result i32) (i32.add - (call_indirect $0 + (call_indirect (type $0) (i32.const 3) ) - (call_indirect $0 + (call_indirect (type $0) (i32.const 0) ) ) |