Skip to content

Commit 9155f51

Browse files
committed
[MLIR] Apply clang-tidy fixes for readability-identifier-naming in AttrTypeReplacerTest.cpp (NFC)
1 parent 745a2a5 commit 9155f51

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mlir/unittests/IR/AttrTypeReplacerTest.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ class CyclicAttrTypeReplacerChainRecursionPruningTest : public ::testing::Test {
8080
});
8181
}
8282

83-
Type getFunctionTypeChain(unsigned N) {
83+
Type getFunctionTypeChain(unsigned n) {
8484
Type type = b.getIndexType();
85-
for (unsigned i = 0; i < N; i++)
85+
for (unsigned i = 0; i < n; i++)
8686
type = b.getFunctionType({}, type);
8787
return type;
8888
};
@@ -168,9 +168,9 @@ class CyclicAttrTypeReplacerBranchingRecusionPruningTest
168168
});
169169
}
170170

171-
Type getFunctionTypeTree(unsigned N) {
171+
Type getFunctionTypeTree(unsigned n) {
172172
Type type = b.getIndexType();
173-
for (unsigned i = 0; i < N; i++)
173+
for (unsigned i = 0; i < n; i++)
174174
type = b.getFunctionType(type, type);
175175
return type;
176176
};

0 commit comments

Comments
 (0)