diff options
Diffstat (limited to 'test/lit/passes/gto-mutability.wast')
-rw-r--r-- | test/lit/passes/gto-mutability.wast | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lit/passes/gto-mutability.wast b/test/lit/passes/gto-mutability.wast index 4be26c348..28fc1bc69 100644 --- a/test/lit/passes/gto-mutability.wast +++ b/test/lit/passes/gto-mutability.wast @@ -434,7 +434,7 @@ ;; CHECK: (type $super (sub (struct (field i32)))) (type $super (sub (struct (field (mut i32))))) ;; CHECK: (type $sub (sub $super (struct (field i32)))) - (type $sub (struct_subtype (field (mut i32)) $super)) + (type $sub (sub $super (struct (field (mut i32))))) ;; CHECK: (type $3 (func)) @@ -488,7 +488,7 @@ ;; CHECK: (type $super (sub (struct (field (mut i32))))) (type $super (sub (struct (field (mut i32))))) ;; CHECK: (type $sub (sub $super (struct (field (mut i32))))) - (type $sub (struct_subtype (field (mut i32)) $super)) + (type $sub (sub $super (struct (field (mut i32))))) ;; CHECK: (type $2 (func (param (ref $super)))) @@ -553,7 +553,7 @@ ;; CHECK: (type $super (sub (struct (field (mut i32))))) (type $super (sub (struct (field (mut i32))))) ;; CHECK: (type $sub (sub $super (struct (field (mut i32))))) - (type $sub (struct_subtype (field (mut i32)) $super)) + (type $sub (sub $super (struct (field (mut i32))))) ;; CHECK: (type $2 (func (param (ref $sub)))) |