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/vacuum-gc.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/vacuum-gc.wast')
-rw-r--r-- | test/lit/passes/vacuum-gc.wast | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit/passes/vacuum-gc.wast b/test/lit/passes/vacuum-gc.wast index 778ee8cd5..a59b2da1e 100644 --- a/test/lit/passes/vacuum-gc.wast +++ b/test/lit/passes/vacuum-gc.wast @@ -2,7 +2,7 @@ ;; RUN: wasm-opt %s --vacuum -all -S -o - | filecheck %s (module - ;; CHECK: (type $"{}" (struct )) + ;; CHECK: (type $"{}" (struct)) ;; CHECK: (import "binaryen-intrinsics" "call.without.effects" (func $call.without.effects (type $2) (param i32 i32 funcref) (result anyref))) (import "binaryen-intrinsics" "call.without.effects" (func $call.without.effects (param i32 i32 funcref) (result (ref null any)))) |