Skip to content

Commit d462d72

Browse files
authored
Merge pull request #78069 from eeckstein/fix-sil-printer
SILPrinter: fix double spaces printed in block arguments
2 parents 37033a7 + 95798d1 commit d462d72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/SIL/IR/SILPrinter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ class SILPrinter : public SILInstructionVisitor<SILPrinter> {
726726
separator = " ";
727727
}
728728
if (!i.IsReborrow && i.OwnershipKind && *i.OwnershipKind != OwnershipKind::None) {
729-
*this << separator << "@" << i.OwnershipKind.value() << " ";
729+
*this << separator << "@" << i.OwnershipKind.value();
730730
separator = " ";
731731
}
732732
if (i.needPrintType) {

0 commit comments

Comments
 (0)