File tree Expand file tree Collapse file tree 8 files changed +0
-267
lines changed Expand file tree Collapse file tree 8 files changed +0
-267
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,11 @@ add_clang_library(clangTidyLLVMModule STATIC
1111 PreferRegisterOverUnsignedCheck.cpp
1212 PreferStaticOverAnonymousNamespaceCheck.cpp
1313 TwineLocalCheck.cpp
14- UseNewMLIROpBuilderCheck.cpp
1514
1615 LINK_LIBS
1716 clangTidy
1817 clangTidyReadabilityModule
1918 clangTidyUtils
20- clangTransformer
2119
2220 DEPENDS
2321 omp_gen
Original file line number Diff line number Diff line change 1818#include " PreferRegisterOverUnsignedCheck.h"
1919#include " PreferStaticOverAnonymousNamespaceCheck.h"
2020#include " TwineLocalCheck.h"
21- #include " UseNewMLIROpBuilderCheck.h"
2221
2322namespace clang ::tidy {
2423namespace llvm_check {
@@ -41,8 +40,6 @@ class LLVMModule : public ClangTidyModule {
4140 CheckFactories.registerCheck <readability::QualifiedAutoCheck>(
4241 " llvm-qualified-auto" );
4342 CheckFactories.registerCheck <TwineLocalCheck>(" llvm-twine-local" );
44- CheckFactories.registerCheck <UseNewMlirOpBuilderCheck>(
45- " llvm-use-new-mlir-op-builder" );
4643 }
4744
4845 ClangTidyOptions getModuleOptions () override {
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -100,12 +100,6 @@ Improvements to clang-tidy
100100New checks
101101^^^^^^^^^^
102102
103- - New :doc: `llvm-mlir-op-builder
104- <clang-tidy/checks/llvm/use-new-mlir-op-builder>` check.
105-
106- Checks for uses of MLIR's old/to be deprecated ``OpBuilder::create<T> `` form
107- and suggests using ``T::create `` instead.
108-
109103New check aliases
110104^^^^^^^^^^^^^^^^^
111105
Original file line number Diff line number Diff line change @@ -247,7 +247,6 @@ Clang-Tidy Checks
247247 :doc: `linuxkernel-must-check-errs <linuxkernel/must-check-errs >`,
248248 :doc: `llvm-header-guard <llvm/header-guard >`,
249249 :doc: `llvm-include-order <llvm/include-order >`, "Yes"
250- :doc: `llvm-use-new-mlir-op-builder <llvm/use-new-mlir-op-builder >`, "Yes"
251250 :doc: `llvm-namespace-comment <llvm/namespace-comment >`,
252251 :doc: `llvm-prefer-isa-or-dyn-cast-in-conditionals <llvm/prefer-isa-or-dyn-cast-in-conditionals >`, "Yes"
253252 :doc: `llvm-prefer-register-over-unsigned <llvm/prefer-register-over-unsigned >`, "Yes"
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments