File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
llvm/lib/Transforms/Scalar Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -371,10 +371,10 @@ class LowerMatrixIntrinsics {
371371 if (auto *CDV = dyn_cast<ConstantDataVector>(Constant)) {
372372 unsigned Width = SI.getStride ();
373373 size_t EltSize = EltTy->getPrimitiveSizeInBits () / 8 ;
374- StringRef Data = CDV->getRawDataValues ().substr (
375- J * Width * EltSize, Width * EltSize);
376- addVector (ConstantDataVector::getRaw (Data, Width,
377- CDV->getElementType ()));
374+ StringRef Data = CDV->getRawDataValues ().substr (J * Width * EltSize,
375+ Width * EltSize);
376+ addVector (
377+ ConstantDataVector::getRaw (Data, Width, CDV->getElementType ()));
378378 } else if (isa<PoisonValue>(Constant))
379379 addVector (PoisonValue::get (RowTy));
380380 else if (isa<UndefValue>(Constant))
You can’t perform that action at this time.
0 commit comments