Skip to content

Commit 81ad8fb

Browse files
committed
[MLIR] Apply clang-tidy fixes for bugprone-argument-comment in ConvertVectorToLLVM.cpp (NFC)
1 parent 314754c commit 81ad8fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/lib/Conversion/VectorToLLVM/ConvertVectorToLLVM.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ lowerReductionWithStartValue(ConversionPatternRewriter &rewriter, Location loc,
716716
accumulator = getOrCreateAccumulator<ReductionNeutral>(rewriter, loc,
717717
llvmType, accumulator);
718718
return LLVMRedIntrinOp::create(rewriter, loc, llvmType,
719-
/*startValue=*/accumulator, vectorOperand,
719+
/*start_value=*/accumulator, vectorOperand,
720720
fmf);
721721
}
722722

@@ -743,7 +743,7 @@ static Value lowerPredicatedReductionWithStartValue(
743743
Value vectorLength =
744744
createVectorLengthValue(rewriter, loc, vectorOperand.getType());
745745
return LLVMVPRedIntrinOp::create(rewriter, loc, llvmType,
746-
/*startValue=*/accumulator, vectorOperand,
746+
/*satrt_value=*/accumulator, vectorOperand,
747747
mask, vectorLength);
748748
}
749749

0 commit comments

Comments
 (0)