diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2022-05-03 18:08:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-04 01:08:09 +0000 |
commit | 60e602896e82e988e4fcbfac74aa9639b4ac8814 (patch) | |
tree | 7f6ccb1b148235fcfd47212f9d3732e8429ecb26 /test/passes/strip-target-features_roundtrip_print-features_all-features.txt | |
parent | 737f65a593226119d085e34393592e7462f60cba (diff) | |
download | binaryen-60e602896e82e988e4fcbfac74aa9639b4ac8814.tar.gz binaryen-60e602896e82e988e4fcbfac74aa9639b4ac8814.tar.bz2 binaryen-60e602896e82e988e4fcbfac74aa9639b4ac8814.zip |
Remove externref (#4633)
Remove `Type::externref` and `HeapType::ext` and replace them with uses of
anyref and any, respectively, now that we have unified these types in the GC
proposal. For backwards compatibility, continue to parse `extern` and
`externref` and maintain their relevant C API functions.
Diffstat (limited to 'test/passes/strip-target-features_roundtrip_print-features_all-features.txt')
-rw-r--r-- | test/passes/strip-target-features_roundtrip_print-features_all-features.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/passes/strip-target-features_roundtrip_print-features_all-features.txt b/test/passes/strip-target-features_roundtrip_print-features_all-features.txt index 53fd2b237..e93805cf5 100644 --- a/test/passes/strip-target-features_roundtrip_print-features_all-features.txt +++ b/test/passes/strip-target-features_roundtrip_print-features_all-features.txt @@ -14,14 +14,14 @@ --enable-relaxed-simd --enable-extended-const (module - (type $none_=>_v128_externref (func (result v128 externref))) - (func $foo (result v128 externref) + (type $none_=>_v128_anyref (func (result v128 anyref))) + (func $foo (result v128 anyref) (tuple.make (v128.const i32x4 0x00000000 0x00000000 0x00000000 0x00000000) - (ref.null extern) + (ref.null any) ) ) - (func $bar (result v128 externref) + (func $bar (result v128 anyref) (return_call $foo) ) ) |