Skip to content

Commit 5e3ffd6

Browse files
committed
[MLIR] Apply clang-tidy fixes for readability-identifier-naming in ArmRunnerUtils.cpp (NFC)
1 parent f41edb3 commit 5e3ffd6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/lib/ExecutionEngine/ArmRunnerUtils.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ extern "C" {
4949
/// The recommended strategy is to call `setArmVectorLength` only from functions
5050
/// that do not access SVE registers, either by themselves or by inlining other
5151
/// functions.
52-
static void setArmVectorLength(std::string_view helper_name, int option,
52+
static void setArmVectorLength(std::string_view helperName, int option,
5353
uint32_t bits) {
5454
#if defined(__linux__) && defined(__aarch64__)
5555
if (bits < 128 || bits > 2048 || !llvm::isPowerOf2_32(bits)) {
@@ -63,7 +63,7 @@ static void setArmVectorLength(std::string_view helper_name, int option,
6363
abort();
6464
}
6565
#else
66-
std::cerr << "[error] " << helper_name << " is unsupported" << std::endl;
66+
std::cerr << "[error] " << helperName << " is unsupported" << std::endl;
6767
abort();
6868
#endif
6969
}

0 commit comments

Comments
 (0)