File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
Dialect/LLVMIR/Transforms Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
- // ===- SliceSupport .h - Helpers for performing IR slicing ---- ---*- C++ -*-===//
1
+ // ===- SliceWalk .h - Helpers for performing IR slice walks ---*- C++ -*-===//
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.
5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
8
9
- #ifndef MLIR_IR_SLICESUPPORT_H
10
- #define MLIR_IR_SLICESUPPORT_H
9
+ #ifndef MLIR_IR_SLICEWALK_IR
10
+ #define MLIR_IR_SLICEWALK_IR
11
11
12
12
#include " mlir/IR/ValueRange.h"
13
13
@@ -96,4 +96,4 @@ std::optional<SmallVector<Value>> getControlFlowPredecessors(Value value);
96
96
97
97
} // namespace mlir
98
98
99
- #endif // MLIR_IR_SLICESUPPORT_H
99
+ #endif // MLIR_IR_SLICEWALK_IR
Original file line number Diff line number Diff line change 14
14
#include " mlir/Dialect/LLVMIR/Transforms/InlinerInterfaceImpl.h"
15
15
#include " mlir/Dialect/LLVMIR/LLVMDialect.h"
16
16
#include " mlir/IR/Matchers.h"
17
- #include " mlir/IR/SliceSupport .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,7 @@ add_mlir_library(MLIRIR
32
32
PatternMatch.cpp
33
33
Region.cpp
34
34
RegionKindInterface.cpp
35
- SliceSupport .cpp
35
+ SliceWalk .cpp
36
36
SymbolTable.cpp
37
37
TensorEncoding.cpp
38
38
Types.cpp
Original file line number Diff line number Diff line change 1
- #include " mlir/IR/SliceSupport .h"
1
+ #include " mlir/IR/SliceWalk .h"
2
2
#include " mlir/Interfaces/ControlFlowInterfaces.h"
3
3
4
4
using namespace mlir ;
You can’t perform that action at this time.
0 commit comments