[Mlir-commits] [mlir] 49496c5 - [MLIR] Apply clang-tidy fixes for misc-use-internal-linkage in LLVMIRIntrinsicGen.cpp (NFC)
Mehdi Amini
llvmlistbot at llvm.org
Mon Dec 8 02:48:52 PST 2025
Author: Mehdi Amini
Date: 2025-12-08T02:48:34-08:00
New Revision: 49496c531da2d1acf0d1e2e74dd84c190347c039
URL: https://github.com/llvm/llvm-project/commit/49496c531da2d1acf0d1e2e74dd84c190347c039
DIFF: https://github.com/llvm/llvm-project/commit/49496c531da2d1acf0d1e2e74dd84c190347c039.diff
LOG: [MLIR] Apply clang-tidy fixes for misc-use-internal-linkage in LLVMIRIntrinsicGen.cpp (NFC)
Added:
Modified:
mlir/tools/mlir-tblgen/LLVMIRIntrinsicGen.cpp
Removed:
################################################################################
diff --git a/mlir/tools/mlir-tblgen/LLVMIRIntrinsicGen.cpp b/mlir/tools/mlir-tblgen/LLVMIRIntrinsicGen.cpp
index daf3d49b5b7e2..54cc4b79a36b1 100644
--- a/mlir/tools/mlir-tblgen/LLVMIRIntrinsicGen.cpp
+++ b/mlir/tools/mlir-tblgen/LLVMIRIntrinsicGen.cpp
@@ -197,7 +197,7 @@ class LLVMIntrinsic {
/// Prints the elements in "range" separated by commas and surrounded by "[]".
template <typename Range>
-void printBracketedRange(const Range &range, llvm::raw_ostream &os) {
+static void printBracketedRange(const Range &range, llvm::raw_ostream &os) {
os << '[';
llvm::interleaveComma(range, os);
os << ']';
More information about the Mlir-commits
mailing list