diff options
Diffstat (limited to 'test/ctor-eval/gc-array.wast.out')
-rw-r--r-- | test/ctor-eval/gc-array.wast.out | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ctor-eval/gc-array.wast.out b/test/ctor-eval/gc-array.wast.out index 20e464e07..eadedfc48 100644 --- a/test/ctor-eval/gc-array.wast.out +++ b/test/ctor-eval/gc-array.wast.out @@ -1,6 +1,6 @@ (module (type $array (array (mut i32))) - (type $none_=>_i32 (func (result i32))) + (type $1 (func (result i32))) (global $global1 (ref $array) (array.new_fixed $array 4 (i32.const 10) (i32.const 20) @@ -12,7 +12,7 @@ (i32.const 1337) )) (export "keepalive" (func $1)) - (func $1 (type $none_=>_i32) (result i32) + (func $1 (type $1) (result i32) (i32.add (array.get $array (global.get $global1) |