Skip to content

Commit a116aa6

Browse files
committed
Fix printSILMultipleValueInstructionResult.
1 parent 7fada0a commit a116aa6

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
@@ -1070,7 +1070,7 @@ class SILPrinter : public SILInstructionVisitor<SILPrinter> {
10701070
const MultipleValueInstructionResult *result) {
10711071
// This should really only happen during debugging.
10721072
if (result->getParent()->getNumResults() == 1) {
1073-
*this << "**" << Ctx.getID(result) << "** = ";
1073+
*this << "**" << Ctx.getID(result) << "**";
10741074
} else {
10751075
*this << '(';
10761076
llvm::interleave(

0 commit comments

Comments
 (0)