diff options
author | Ben Smith <binjimin@gmail.com> | 2018-12-19 12:36:52 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-19 12:36:52 -0800 |
commit | 052d2864ec4cc45a3aca4bab1a833d1cc45e29d6 (patch) | |
tree | 750baf33c065b7ed20121e10956fbb1f0800918a /test/spec/call_indirect.txt | |
parent | 3ac02b6d3cc5bc3ff6cfe57df312b2677ca83d75 (diff) | |
download | wabt-052d2864ec4cc45a3aca4bab1a833d1cc45e29d6.tar.gz wabt-052d2864ec4cc45a3aca4bab1a833d1cc45e29d6.tar.bz2 wabt-052d2864ec4cc45a3aca4bab1a833d1cc45e29d6.zip |
The great renaming (#985)
This huge PR does all the renaming as described in issue #933. It also
updates to the latest testsuite so the new names are used.
The old names of the MVP instructions are still supported for
convenience (though we should remove those too at some point), but the
old simd and atomic instruction names are no longer supported.
Diffstat (limited to 'test/spec/call_indirect.txt')
-rw-r--r-- | test/spec/call_indirect.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/spec/call_indirect.txt b/test/spec/call_indirect.txt index f6b17130..12f7108c 100644 --- a/test/spec/call_indirect.txt +++ b/test/spec/call_indirect.txt @@ -45,26 +45,26 @@ out/test/spec/call_indirect.wast:654: assert_malformed passed: ^ out/test/spec/call_indirect.wast:664: assert_malformed passed: out/test/spec/call_indirect/call_indirect.7.wat:1:46: error: unexpected token $x, expected ). - ...e 0 anyfunc)(func (call_indirect (param $x i32) (i32.const 0) (i32.const 0))) + ...e 0 funcref)(func (call_indirect (param $x i32) (i32.const 0) (i32.const 0))) ^^ out/test/spec/call_indirect/call_indirect.7.wat:1:82: error: unexpected token ), expected EOF. - ...e 0 anyfunc)(func (call_indirect (param $x i32) (i32.const 0) (i32.const 0))) + ...e 0 funcref)(func (call_indirect (param $x i32) (i32.const 0) (i32.const 0))) ^ out/test/spec/call_indirect.wast:671: assert_malformed passed: out/test/spec/call_indirect/call_indirect.8.wat:1:57: error: expected 0 results, got 1 - ...0 anyfunc)(func (result i32) (call_indirect (type $sig) (result i32) (i32... + ...0 funcref)(func (result i32) (call_indirect (type $sig) (result i32) (i32... ^^^^^^^^^^^^^ out/test/spec/call_indirect.wast:681: assert_malformed passed: out/test/spec/call_indirect/call_indirect.9.wat:1:82: error: expected 1 arguments, got 0 - ...0 anyfunc)(func (result i32) (call_indirect (type $sig) (result i32) (i32... + ...0 funcref)(func (result i32) (call_indirect (type $sig) (result i32) (i32... ^^^^^^^^^^^^^ out/test/spec/call_indirect.wast:691: assert_malformed passed: out/test/spec/call_indirect/call_indirect.10.wat:1:69: error: expected 1 results, got 0 - ...i32)))(table 0 anyfunc)(func (call_indirect (type $sig) (param i32) (i32.... + ...i32)))(table 0 funcref)(func (call_indirect (type $sig) (param i32) (i32.... ^^^^^^^^^^^^^ out/test/spec/call_indirect.wast:701: assert_malformed passed: out/test/spec/call_indirect/call_indirect.11.wat:1:86: error: expected 2 arguments, got 1 - ...0 anyfunc)(func (result i32) (call_indirect (type $sig) (param i32) (resu... + ...0 funcref)(func (result i32) (call_indirect (type $sig) (param i32) (resu... ^^^^^^^^^^^^^ out/test/spec/call_indirect.wast:716: assert_invalid passed: error: found call_indirect operator, but no table |