diff options
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) ) ) |