diff options
Diffstat (limited to 'test/heap-types.wast.fromBinary.noDebugInfo')
-rw-r--r-- | test/heap-types.wast.fromBinary.noDebugInfo | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/test/heap-types.wast.fromBinary.noDebugInfo b/test/heap-types.wast.fromBinary.noDebugInfo index 6a8991150..c33ba0cc8 100644 --- a/test/heap-types.wast.fromBinary.noDebugInfo +++ b/test/heap-types.wast.fromBinary.noDebugInfo @@ -1,8 +1,8 @@ (module (type ${i32_f32_f64} (struct (field i32) (field f32) (field f64))) (type ${i8_mut:i16_ref|{i32_f32_f64}|_mut:ref|{i32_f32_f64}|} (struct (field i8) (field (mut i16)) (field (ref ${i32_f32_f64})) (field (mut (ref ${i32_f32_f64}))))) - (type $none_=>_none (func)) (type $[mut:f64] (array (mut f64))) + (type $none_=>_none (func)) (type ${i32_i64} (struct (field i32) (field i64))) (type $[mut:ref?|[mut:f64]|] (array (mut (ref null $[mut:f64])))) (type ${mut:f32} (struct (field (mut f32)))) @@ -476,5 +476,36 @@ ) ) ) + (func $23 + (drop + (struct.new_default ${i32_f32_f64}) + ) + (drop + (struct.new ${i32_f32_f64} + (i32.const 1) + (f32.const 2.3450000286102295) + (f64.const 3.14159) + ) + ) + (drop + (array.new $[mut:f64] + (f64.const 3.14159) + (i32.const 3) + ) + ) + (drop + (array.new_default $[mut:ref?|[mut:f64]|] + (i32.const 10) + ) + ) + (drop + (array.init_static $[mut:f64] + (f64.const 1) + (f64.const 2) + (f64.const 4) + (f64.const 8) + ) + ) + ) ) |