blob: 5dd33d99eba79b52c03d36469e06c34474354360 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
;; NOTE: Assertions have been generated by update_lit_checks.py and should not be edited.
;; Regression test for a bug in which field names were not printed in nominal mode.
;; RUN: wasm-opt %s -all --nominal -S -o - | filecheck %s
;; RUN: wasm-opt %s -all --nominal --roundtrip -S -o - | filecheck %s
(module
;; CHECK: (type $struct (struct (field (mut i32)) (field f32) (field $named f64)))
(type $struct (struct
(field (mut i32))
(field f32)
(field $named f64)
))
;; CHECK: (func $foo (param $0 (ref $struct))
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (struct.get $struct $named
;; CHECK-NEXT: (local.get $0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $foo (param (ref $struct))
(drop
(struct.get $struct $named
(local.get 0)
)
)
)
)
|