summaryrefslogtreecommitdiff
path: root/test/multivalue.wast.from-wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/multivalue.wast.from-wast')
-rw-r--r--test/multivalue.wast.from-wast10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/multivalue.wast.from-wast b/test/multivalue.wast.from-wast
index c6aa020dd..9340c183a 100644
--- a/test/multivalue.wast.from-wast
+++ b/test/multivalue.wast.from-wast
@@ -3,7 +3,7 @@
(type $none_=>_none (func))
(type $none_=>_i64 (func (result i64)))
(type $none_=>_f32_i64_i32 (func (result f32 i64 i32)))
- (type $none_=>_i32_i64_anyref (func (result i32 i64 anyref)))
+ (type $none_=>_i32_i64_externref (func (result i32 i64 externref)))
(type $none_=>_i32_i64_f32 (func (result i32 i64 f32)))
(type $none_=>_i32 (func (result i32)))
(type $none_=>_f32 (func (result f32)))
@@ -135,18 +135,18 @@
)
)
)
- (func $mv-if (result i32 i64 anyref)
- (if (result i32 i64 anyref)
+ (func $mv-if (result i32 i64 externref)
+ (if (result i32 i64 externref)
(i32.const 1)
(tuple.make
(i32.const 42)
(i64.const 42)
- (ref.null any)
+ (ref.null extern)
)
(tuple.make
(i32.const 42)
(i64.const 42)
- (ref.null any)
+ (ref.null extern)
)
)
)