summaryrefslogtreecommitdiff
path: root/test/lit/passes/optimize-instructions-gc-iit.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/lit/passes/optimize-instructions-gc-iit.wast')
-rw-r--r--test/lit/passes/optimize-instructions-gc-iit.wast14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/lit/passes/optimize-instructions-gc-iit.wast b/test/lit/passes/optimize-instructions-gc-iit.wast
index d6bb9eb31..9923bf89b 100644
--- a/test/lit/passes/optimize-instructions-gc-iit.wast
+++ b/test/lit/passes/optimize-instructions-gc-iit.wast
@@ -9,16 +9,16 @@
(module
;; CHECK: (type $parent (struct (field i32)))
- ;; NOMNL: (type $parent (struct (field i32)))
- ;; NOMNL-TNH: (type $parent (struct (field i32)))
+ ;; NOMNL: (type $parent (struct_subtype (field i32) data))
+ ;; NOMNL-TNH: (type $parent (struct_subtype (field i32) data))
(type $parent (struct (field i32)))
;; CHECK: (type $child (struct (field i32) (field f64)))
- ;; NOMNL: (type $child (struct (field i32) (field f64)) (extends $parent))
- ;; NOMNL-TNH: (type $child (struct (field i32) (field f64)) (extends $parent))
- (type $child (struct (field i32) (field f64)) (extends $parent))
+ ;; NOMNL: (type $child (struct_subtype (field i32) (field f64) $parent))
+ ;; NOMNL-TNH: (type $child (struct_subtype (field i32) (field f64) $parent))
+ (type $child (struct_subtype (field i32) (field f64) $parent))
;; CHECK: (type $other (struct (field i64) (field f32)))
- ;; NOMNL: (type $other (struct (field i64) (field f32)))
- ;; NOMNL-TNH: (type $other (struct (field i64) (field f32)))
+ ;; NOMNL: (type $other (struct_subtype (field i64) (field f32) data))
+ ;; NOMNL-TNH: (type $other (struct_subtype (field i64) (field f32) data))
(type $other (struct (field i64) (field f32)))
;; CHECK: (func $foo