diff options
Diffstat (limited to 'test/lit/passes/optimize-casts.wast')
-rw-r--r-- | test/lit/passes/optimize-casts.wast | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lit/passes/optimize-casts.wast b/test/lit/passes/optimize-casts.wast index 2854df3bb..d0b4d05d7 100644 --- a/test/lit/passes/optimize-casts.wast +++ b/test/lit/passes/optimize-casts.wast @@ -3,10 +3,10 @@ (module ;; CHECK: (type $A (sub (struct ))) - (type $A (struct_subtype data)) + (type $A (sub (struct))) ;; CHECK: (type $B (sub $A (struct ))) - (type $B (struct_subtype $A)) + (type $B (sub $A (struct))) ;; CHECK: (type $void (func)) |