Skip to content

Commit 7b8866d

Browse files
committed
!fixup fix formatting
1 parent 00dea4a commit 7b8866d

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

llvm/lib/Transforms/Vectorize/VPlanRecipes.cpp

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -869,11 +869,12 @@ void VPIRInstruction::print(raw_ostream &O, const Twine &Indent,
869869

870870
if (getNumOperands() != 0) {
871871
O << " (extra operand" << (getNumOperands() > 1 ? "s" : "") << ": ";
872-
interleaveComma(enumerate(operands()), O, [this, &O, &SlotTracker](auto Op) {
873-
Op.value()->printAsOperand(O, SlotTracker);
874-
O << " from ";
875-
getParent()->getPredecessors()[Op.index()]->printAsOperand(O);
876-
});
872+
interleaveComma(
873+
enumerate(operands()), O, [this, &O, &SlotTracker](auto Op) {
874+
Op.value()->printAsOperand(O, SlotTracker);
875+
O << " from ";
876+
getParent()->getPredecessors()[Op.index()]->printAsOperand(O);
877+
});
877878
O << ")";
878879
}
879880
}

0 commit comments

Comments
 (0)