Skip to content

Commit 4a9b7a1

Browse files
joker-ephHoney Goyal
authored andcommitted
[MLIR] Apply clang-tidy fixes for misc-use-internal-linkage in LLVMIRIntrinsicGen.cpp (NFC)
1 parent 5d63fff commit 4a9b7a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/tools/mlir-tblgen/LLVMIRIntrinsicGen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ class LLVMIntrinsic {
197197

198198
/// Prints the elements in "range" separated by commas and surrounded by "[]".
199199
template <typename Range>
200-
void printBracketedRange(const Range &range, llvm::raw_ostream &os) {
200+
static void printBracketedRange(const Range &range, llvm::raw_ostream &os) {
201201
os << '[';
202202
llvm::interleaveComma(range, os);
203203
os << ']';

0 commit comments

Comments
 (0)