Skip to content

Commit 5d6d893

Browse files
committed
clang-format
1 parent a3d495b commit 5d6d893

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

llvm/lib/Target/RISCV/RISCVInterleavedAccess.cpp

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,10 @@ bool RISCVTargetLowering::lowerDeinterleaveIntrinsicToLoad(
279279
{VecTupTy, PtrTy, Mask->getType(), VL->getType()});
280280

281281
Value *Operands[] = {
282-
PoisonValue::get(VecTupTy), LI->getPointerOperand(), Mask, VL,
282+
PoisonValue::get(VecTupTy),
283+
LI->getPointerOperand(),
284+
Mask,
285+
VL,
283286
ConstantInt::get(XLenTy,
284287
RISCVVType::TAIL_AGNOSTIC | RISCVVType::MASK_AGNOSTIC),
285288
ConstantInt::get(XLenTy, Log2_64(SEW))};
@@ -357,14 +360,13 @@ bool RISCVTargetLowering::lowerInterleaveIntrinsicToStore(
357360
{StoredVal, InterleaveValues[i], Builder.getInt32(i)});
358361

359362
Function *VssegNFunc = Intrinsic::getOrInsertDeclaration(
360-
SI->getModule(), ScalableVssegIntrIds[Factor - 2],
361-
{VecTupTy, PtrTy, Mask->getType(), VL->getType()});
363+
SI->getModule(), ScalableVssegIntrIds[Factor - 2],
364+
{VecTupTy, PtrTy, Mask->getType(), VL->getType()});
362365

363366
Value *Operands[] = {StoredVal, SI->getPointerOperand(), Mask, VL,
364-
ConstantInt::get(XLenTy, Log2_64(SEW))};
367+
ConstantInt::get(XLenTy, Log2_64(SEW))};
365368

366369
Builder.CreateCall(VssegNFunc, Operands);
367-
368370
}
369371

370372
return true;

0 commit comments

Comments
 (0)