diff options
author | Ben Smith <binjimin@gmail.com> | 2019-02-25 00:12:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-25 00:12:19 -0800 |
commit | 93640e2a4ef8559c412f9860aa8ed1497d756abc (patch) | |
tree | e66216d6841668c8c1671450e22db6fbdc531022 /test/desugar | |
parent | 8096983bb0b8fa2f0ab3486dad76e9f7c50eb381 (diff) | |
download | wabt-93640e2a4ef8559c412f9860aa8ed1497d756abc.tar.gz wabt-93640e2a4ef8559c412f9860aa8ed1497d756abc.tar.bz2 wabt-93640e2a4ef8559c412f9860aa8ed1497d756abc.zip |
Rename anyfunc -> funcref; parse reference types (#1026)
Also:
* Add feature limits on using v128 and anyref types (requires
--enable-simd and --enable-reference-types respectively).
* Separate out ParseValueType (used for params, locals, global types)
from ParseRefType (used for table types).
Diffstat (limited to 'test/desugar')
-rw-r--r-- | test/desugar/basic.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/desugar/basic.txt b/test/desugar/basic.txt index d3b11213..0fe104e5 100644 --- a/test/desugar/basic.txt +++ b/test/desugar/basic.txt @@ -14,7 +14,7 @@ (module (import "foo" "bar" (func (;0;) (result i32))) (global (;0;) i32 (i32.const 1)) - (table (;0;) 1 1 anyfunc) + (table (;0;) 1 1 funcref) (elem (;0;) (i32.const 0) 0) (memory (;0;) 1 1) (data (;0;) (i32.const 0) "hello") |