File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
Dialect/LLVMIR/Transforms Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
9
- #ifndef MLIR_IR_SLICEWALK_IR
10
- #define MLIR_IR_SLICEWALK_IR
9
+ #ifndef MLIR_ANALYSIS_SLICEWALK_IR
10
+ #define MLIR_ANALYSIS_SLICEWALK_IR
11
11
12
12
#include " mlir/IR/ValueRange.h"
13
13
@@ -95,4 +95,4 @@ std::optional<SmallVector<Value>> getControlFlowPredecessors(Value value);
95
95
96
96
} // namespace mlir
97
97
98
- #endif // MLIR_IR_SLICEWALK_IR
98
+ #endif // MLIR_ANALYSIS_SLICEWALK_IR
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ add_mlir_library(MLIRAnalysis
29
29
Liveness.cpp
30
30
CFGLoopInfo.cpp
31
31
SliceAnalysis.cpp
32
+ SliceWalk.cpp
32
33
TopologicalSortUtils.cpp
33
34
34
35
AliasAnalysis/LocalAliasAnalysis.cpp
Original file line number Diff line number Diff line change 1
- #include " mlir/IR /SliceWalk.h"
1
+ #include " mlir/Analysis /SliceWalk.h"
2
2
#include " mlir/Interfaces/ControlFlowInterfaces.h"
3
3
4
4
using namespace mlir ;
Original file line number Diff line number Diff line change 12
12
// ===----------------------------------------------------------------------===//
13
13
14
14
#include " mlir/Dialect/LLVMIR/Transforms/InlinerInterfaceImpl.h"
15
+ #include " mlir/Analysis/SliceWalk.h"
15
16
#include " mlir/Dialect/LLVMIR/LLVMDialect.h"
16
17
#include " mlir/IR/Matchers.h"
17
- #include " mlir/IR/SliceWalk.h"
18
18
#include " mlir/Interfaces/DataLayoutInterfaces.h"
19
19
#include " mlir/Transforms/InliningUtils.h"
20
20
#include " llvm/ADT/ScopeExit.h"
Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ add_mlir_library(MLIRIR
32
32
PatternMatch.cpp
33
33
Region.cpp
34
34
RegionKindInterface.cpp
35
- SliceWalk.cpp
36
35
SymbolTable.cpp
37
36
TensorEncoding.cpp
38
37
Types.cpp
You can’t perform that action at this time.
0 commit comments