Skip to content

Commit 546530c

Browse files
committed
!fixup fix formatting
1 parent 2906da8 commit 546530c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

llvm/lib/Transforms/Vectorize/VPlanConstruction.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,12 +254,14 @@ void PlainCFGBuilder::createVPInstructionsForVPBB(VPBasicBlock *VPBB,
254254

255255
if (auto *CI = dyn_cast<CastInst>(Inst)) {
256256
NewR = VPIRBuilder.createScalarCast(CI->getOpcode(), VPOperands[0],
257-
CI->getType(), CI->getDebugLoc(), {}, MD);
257+
CI->getType(), CI->getDebugLoc(),
258+
{}, MD);
258259
NewR->setUnderlyingValue(CI);
259260
} else {
260261
// Build VPInstruction for any arbitrary Instruction without specific
261262
// representation in VPlan.
262-
NewR = VPIRBuilder.createNaryOp(Inst->getOpcode(), VPOperands, Inst, MD, Inst->getDebugLoc());
263+
NewR = VPIRBuilder.createNaryOp(Inst->getOpcode(), VPOperands, Inst, MD,
264+
Inst->getDebugLoc());
263265
}
264266
}
265267

0 commit comments

Comments
 (0)