diff options
author | Thomas Lively <tlively@google.com> | 2024-07-16 13:50:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-16 10:50:50 -0700 |
commit | afef6d353c4283798b82e6cd4a6969fdfdc7cf7c (patch) | |
tree | 2e884eca92e842501fb6d3ed72a53a48e80cf0df /test/lit/validation/shared-struct.wast | |
parent | 0964a6adabc6428f8b188ed7d8949c801adedf33 (diff) | |
download | binaryen-afef6d353c4283798b82e6cd4a6969fdfdc7cf7c.tar.gz binaryen-afef6d353c4283798b82e6cd4a6969fdfdc7cf7c.tar.bz2 binaryen-afef6d353c4283798b82e6cd4a6969fdfdc7cf7c.zip |
Remove extra space printed in empty structs (#6750)
When we switched to the new type printing machinery, we inserted this
extra space to minimize the diff in the test output compared with the
previous type printer. Improve the quality of the printed output by
removing it.
Diffstat (limited to 'test/lit/validation/shared-struct.wast')
-rw-r--r-- | test/lit/validation/shared-struct.wast | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit/validation/shared-struct.wast b/test/lit/validation/shared-struct.wast index ee25b6f24..1e96dc9f5 100644 --- a/test/lit/validation/shared-struct.wast +++ b/test/lit/validation/shared-struct.wast @@ -4,7 +4,7 @@ ;; RUN: wasm-opt %s --enable-reference-types --enable-gc --enable-shared-everything -o - -S | filecheck %s --check-prefix SHARED ;; NO-SHARED: global type requires additional features [--enable-reference-types --enable-gc --enable-shared-everything] -;; SHARED: (type $t (shared (struct ))) +;; SHARED: (type $t (shared (struct))) (module (type $t (shared (struct))) |