diff options
Diffstat (limited to 'test/ctor-eval/ignore-external-input-gc.wast.out')
-rw-r--r-- | test/ctor-eval/ignore-external-input-gc.wast.out | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ctor-eval/ignore-external-input-gc.wast.out b/test/ctor-eval/ignore-external-input-gc.wast.out index 0b45f89d6..9b10b808b 100644 --- a/test/ctor-eval/ignore-external-input-gc.wast.out +++ b/test/ctor-eval/ignore-external-input-gc.wast.out @@ -1,16 +1,16 @@ (module - (type $ref|any|_=>_none (func (param (ref any)))) - (type $none_=>_i32 (func (result i32))) + (type $0 (func (param (ref any)))) + (type $1 (func (result i32))) (global $global1 (mut i32) (i32.const 11)) (global $global2 (mut i32) (i32.const 20)) (export "test2" (func $1)) (export "keepalive" (func $2)) - (func $1 (type $ref|any|_=>_none) (param $any (ref any)) + (func $1 (type $0) (param $any (ref any)) (global.set $global2 (i32.const 22) ) ) - (func $2 (type $none_=>_i32) (result i32) + (func $2 (type $1) (result i32) (i32.add (global.get $global1) (global.get $global2) |