mirror of
https://github.com/intel/llvm.git
synced 2026-02-04 11:38:04 +08:00
Apply clang-tidy fixes for readability-identifier-naming in AffineOps.cpp (NFC)
This commit is contained in:
@@ -4041,10 +4041,10 @@ LogicalResult AffineVectorStoreOp::verify() {
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
void AffineDelinearizeIndexOp::build(OpBuilder &builder, OperationState &result,
|
||||
Value linear_index,
|
||||
Value linearIndex,
|
||||
ArrayRef<OpFoldResult> basis) {
|
||||
result.addTypes(SmallVector<Type>(basis.size(), builder.getIndexType()));
|
||||
result.addOperands(linear_index);
|
||||
result.addOperands(linearIndex);
|
||||
SmallVector<Value> basisValues =
|
||||
llvm::to_vector(llvm::map_range(basis, [&](OpFoldResult ofr) -> Value {
|
||||
Optional<int64_t> staticDim = getConstantIntValue(ofr);
|
||||
|
||||
Reference in New Issue
Block a user