File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
include/flang/Optimizer/Dialect Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ mlir_tablegen(FIROpsTypes.h.inc --gen-typedef-decls)
11
11
mlir_tablegen (FIROpsTypes.cpp.inc --gen-typedef-defs )
12
12
add_public_tablegen_target (FIRTypesIncGen )
13
13
14
- set (LLVM_TARGET_DEFINITIONS RewritePatterns .td )
15
- mlir_tablegen (RewritePatterns .inc -gen-rewriters )
16
- add_public_tablegen_target (RewritePatternsIncGen )
14
+ set (LLVM_TARGET_DEFINITIONS CanonicalizationPatterns .td )
15
+ mlir_tablegen (CanonicalizationPatterns .inc -gen-rewriters )
16
+ add_public_tablegen_target (CanonicalizationPatternsIncGen )
17
17
18
18
add_custom_target (flang-doc )
19
19
set (dialect_doc_filename "FIRLangRef" )
Original file line number Diff line number Diff line change 1
- //===-- RewritePatterns .td - FIR Rewrite Patterns ----------*- tablegen -* -===//
1
+ //===-- CanonicalizationPatterns .td - FIR Canonicalization Patterns -------===//
2
2
//
3
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ add_flang_library(FIRDialect
10
10
FIRSupport
11
11
FIROpsIncGen
12
12
FIRTypesIncGen
13
- RewritePatternsIncGen
13
+ CanonicalizationPatternsIncGen
14
14
15
15
LINK_LIBS
16
16
FIRSupport
Original file line number Diff line number Diff line change 25
25
#include " llvm/ADT/TypeSwitch.h"
26
26
27
27
namespace {
28
- #include " flang/Optimizer/Dialect/RewritePatterns .inc"
28
+ #include " flang/Optimizer/Dialect/CanonicalizationPatterns .inc"
29
29
} // namespace
30
30
using namespace fir ;
31
31
You can’t perform that action at this time.
0 commit comments