@@ -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