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
11
11
PreferRegisterOverUnsignedCheck.cpp
12
12
PreferStaticOverAnonymousNamespaceCheck.cpp
13
13
TwineLocalCheck.cpp
14
- UseNewMLIROpBuilderCheck.cpp
15
14
16
15
LINK_LIBS
17
16
clangTidy
18
17
clangTidyReadabilityModule
19
18
clangTidyUtils
20
- clangTransformer
21
19
22
20
DEPENDS
23
21
omp_gen
Original file line number Diff line number Diff line change 18
18
#include " PreferRegisterOverUnsignedCheck.h"
19
19
#include " PreferStaticOverAnonymousNamespaceCheck.h"
20
20
#include " TwineLocalCheck.h"
21
- #include " UseNewMLIROpBuilderCheck.h"
22
21
23
22
namespace clang ::tidy {
24
23
namespace llvm_check {
@@ -41,8 +40,6 @@ class LLVMModule : public ClangTidyModule {
41
40
CheckFactories.registerCheck <readability::QualifiedAutoCheck>(
42
41
" llvm-qualified-auto" );
43
42
CheckFactories.registerCheck <TwineLocalCheck>(" llvm-twine-local" );
44
- CheckFactories.registerCheck <UseNewMlirOpBuilderCheck>(
45
- " llvm-use-new-mlir-op-builder" );
46
43
}
47
44
48
45
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
100
100
New checks
101
101
^^^^^^^^^^
102
102
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
-
109
103
New check aliases
110
104
^^^^^^^^^^^^^^^^^
111
105
Original file line number Diff line number Diff line change @@ -247,7 +247,6 @@ Clang-Tidy Checks
247
247
:doc: `linuxkernel-must-check-errs <linuxkernel/must-check-errs >`,
248
248
:doc: `llvm-header-guard <llvm/header-guard >`,
249
249
:doc: `llvm-include-order <llvm/include-order >`, "Yes"
250
- :doc: `llvm-use-new-mlir-op-builder <llvm/use-new-mlir-op-builder >`, "Yes"
251
250
:doc: `llvm-namespace-comment <llvm/namespace-comment >`,
252
251
:doc: `llvm-prefer-isa-or-dyn-cast-in-conditionals <llvm/prefer-isa-or-dyn-cast-in-conditionals >`, "Yes"
253
252
: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