[MLIR] Apply clang-tidy fixes for misc-use-internal-linkage in LLVMIRIntrinsicGen.cpp (NFC)

This commit is contained in:
Mehdi Amini
2025-08-21 13:09:47 -07:00
parent bb926c157f
commit 49496c531d

View File

@@ -197,7 +197,7 @@ private:
/// 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 << ']';