[Mlir-commits] [mlir] 5e3ffd6 - [MLIR] Apply clang-tidy fixes for readability-identifier-naming in ArmRunnerUtils.cpp (NFC)

Mehdi Amini llvmlistbot at llvm.org
Mon Dec 8 03:48:32 PST 2025


Author: Mehdi Amini
Date: 2025-12-08T03:48:14-08:00
New Revision: 5e3ffd66e7c434ac615432cdfbfb0d6ed47b643c

URL: https://github.com/llvm/llvm-project/commit/5e3ffd66e7c434ac615432cdfbfb0d6ed47b643c
DIFF: https://github.com/llvm/llvm-project/commit/5e3ffd66e7c434ac615432cdfbfb0d6ed47b643c.diff

LOG: [MLIR] Apply clang-tidy fixes for readability-identifier-naming in ArmRunnerUtils.cpp (NFC)

Added: 
    

Modified: 
    mlir/lib/ExecutionEngine/ArmRunnerUtils.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/lib/ExecutionEngine/ArmRunnerUtils.cpp b/mlir/lib/ExecutionEngine/ArmRunnerUtils.cpp
index 9868ffaa28a7f..9b1c39ecda1da 100644
--- a/mlir/lib/ExecutionEngine/ArmRunnerUtils.cpp
+++ b/mlir/lib/ExecutionEngine/ArmRunnerUtils.cpp
@@ -49,7 +49,7 @@ extern "C" {
 /// The recommended strategy is to call `setArmVectorLength` only from functions
 /// that do not access SVE registers, either by themselves or by inlining other
 /// functions.
-static void setArmVectorLength(std::string_view helper_name, int option,
+static void setArmVectorLength(std::string_view helperName, int option,
                                uint32_t bits) {
 #if defined(__linux__) && defined(__aarch64__)
   if (bits < 128 || bits > 2048 || !llvm::isPowerOf2_32(bits)) {
@@ -63,7 +63,7 @@ static void setArmVectorLength(std::string_view helper_name, int option,
     abort();
   }
 #else
-  std::cerr << "[error] " << helper_name << " is unsupported" << std::endl;
+  std::cerr << "[error] " << helperName << " is unsupported" << std::endl;
   abort();
 #endif
 }


        


More information about the Mlir-commits mailing list