Skip to content

Commit 540e4af

Browse files
jpienaarlocalspook
andauthored
Update clang-tools-extra/test/clang-tidy/checkers/llvm/use-new-mlir-op-builder.cpp
Co-authored-by: Victor Chernyakin <[email protected]>
1 parent b2fb3e8 commit 540e4af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang-tools-extra/test/clang-tidy/checkers/llvm/use-new-mlir-op-builder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class CustomBuilder : public mlir::ImplicitLocOpBuilder {
5252
public:
5353
mlir::NamedOp f(const char *name) {
5454
// CHECK-MESSAGES: :[[@LINE+2]]:12: warning: use 'OpType::create(builder, ...)'
55-
// CHECK-FIXES: NamedOp::create(*this, name);
55+
// CHECK-FIXES: mlir::NamedOp::create(*this, name);
5656
return create<mlir::NamedOp>(name);
5757
}
5858
};

0 commit comments

Comments
 (0)