Skip to content

Commit d796d73

Browse files
committed
[MLIR] Apply clang-tidy fixes for readability-identifier-naming in Inliner.cpp (NFC)
1 parent cd805a7 commit d796d73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/lib/Transforms/Utils/Inliner.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,8 +613,8 @@ Inliner::Impl::inlineCallsInSCC(InlinerInterfaceImpl &inlinerIface,
613613

614614
LLVM_DEBUG({
615615
LDBG() << "* Inliner: Initial calls in SCC are: {";
616-
for (unsigned i = 0, e = calls.size(); i < e; ++i)
617-
LDBG() << " " << i << ". " << calls[i].call << ",";
616+
for (unsigned I = 0, E = calls.size(); I < E; ++I)
617+
LDBG() << " " << I << ". " << calls[I].call << ",";
618618
LDBG() << "}";
619619
});
620620

0 commit comments

Comments
 (0)