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/passes/no-inline-monomorphize-inlining.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/passes/no-inline-monomorphize-inlining.wast')
-rw-r--r-- | test/lit/passes/no-inline-monomorphize-inlining.wast | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/lit/passes/no-inline-monomorphize-inlining.wast b/test/lit/passes/no-inline-monomorphize-inlining.wast index 716d0beda..b5dc2ed39 100644 --- a/test/lit/passes/no-inline-monomorphize-inlining.wast +++ b/test/lit/passes/no-inline-monomorphize-inlining.wast @@ -11,12 +11,12 @@ ;; RUN: foreach %s %t wasm-opt --monomorphize-always --inlining --optimize-level=3 -all -S -o - | filecheck %s --check-prefix YESINLINE (module - ;; NO_INLINE: (type $A (sub (struct ))) - ;; YESINLINE: (type $A (sub (struct ))) + ;; NO_INLINE: (type $A (sub (struct))) + ;; YESINLINE: (type $A (sub (struct))) (type $A (sub (struct))) - ;; NO_INLINE: (type $B (sub $A (struct ))) - ;; YESINLINE: (type $B (sub $A (struct ))) + ;; NO_INLINE: (type $B (sub $A (struct))) + ;; YESINLINE: (type $B (sub $A (struct))) (type $B (sub $A (struct))) ;; NO_INLINE: (type $2 (func)) |