summaryrefslogtreecommitdiff
path: root/test/lit/isorecursive-whole-group.wast
diff options
context:
space:
mode:
Diffstat (limited to 'test/lit/isorecursive-whole-group.wast')
-rw-r--r--test/lit/isorecursive-whole-group.wast10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/lit/isorecursive-whole-group.wast b/test/lit/isorecursive-whole-group.wast
index 4d349a3cb..f2a60deda 100644
--- a/test/lit/isorecursive-whole-group.wast
+++ b/test/lit/isorecursive-whole-group.wast
@@ -1,4 +1,4 @@
-;; TODO: Autogenerate these checks! The current script cannot handle `rec`.
+;; NOTE: Assertions have been generated by update_lit_checks.py and should not be edited.
;; RUN: wasm-opt %s -all --hybrid -S -o - | filecheck %s
;; RUN: wasm-opt %s -all --hybrid --roundtrip -S -o - | filecheck %s
@@ -8,15 +8,15 @@
(module
-;; CHECK: (rec
-;; CHECK-NEXT: (type $used (struct_subtype data))
-;; CHECK-NEXT: (type $unused (struct_subtype data))
-;; CHECK-NEXT: )
(rec
+ ;; CHECK: (rec
+ ;; CHECK-NEXT: (type $used (struct_subtype data))
(type $used (struct_subtype data))
+ ;; CHECK: (type $unused (struct_subtype data))
(type $unused (struct_subtype data))
)
+ ;; CHECK: (global $g (ref null $used) (ref.null $used))
(global $g (ref null $used) (ref.null $used))
)