diff options
| author | Lei Zhang <antiagainst@google.com> | 2019-03-01 13:48:24 -0800 |
|---|---|---|
| committer | jpienaar <jpienaar@google.com> | 2019-03-29 16:53:19 -0700 |
| commit | 85d9b6c8f7119e519fa9cd34f0359625b7c315ae (patch) | |
| tree | faa45ce90b00a544a98cc70f1b0274c2c86ce70b /mlir/lib/Transforms/MemRefDataFlowOpt.cpp | |
| parent | 8254aabd4a1788b48907b3052c47f787beb5028c (diff) | |
| download | bcm5719-llvm-85d9b6c8f7119e519fa9cd34f0359625b7c315ae.tar.gz bcm5719-llvm-85d9b6c8f7119e519fa9cd34f0359625b7c315ae.zip | |
Use consistent names for dialect op source files
This CL changes dialect op source files (.h, .cpp, .td) to follow the following
convention:
<full-dialect-name>/<dialect-namespace>Ops.{h|cpp|td}
Builtin and standard dialects are specially treated, though. Both of them do
not have dialect namespace; the former is still named as BuiltinOps.* and the
latter is named as Ops.*.
Purely mechanical. NFC.
PiperOrigin-RevId: 236371358
Diffstat (limited to 'mlir/lib/Transforms/MemRefDataFlowOpt.cpp')
| -rw-r--r-- | mlir/lib/Transforms/MemRefDataFlowOpt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/lib/Transforms/MemRefDataFlowOpt.cpp b/mlir/lib/Transforms/MemRefDataFlowOpt.cpp index 55837f95d14..51e9debd0ad 100644 --- a/mlir/lib/Transforms/MemRefDataFlowOpt.cpp +++ b/mlir/lib/Transforms/MemRefDataFlowOpt.cpp @@ -26,7 +26,7 @@ #include "mlir/Analysis/Dominance.h" #include "mlir/Analysis/Utils.h" #include "mlir/Pass/Pass.h" -#include "mlir/StandardOps/StandardOps.h" +#include "mlir/StandardOps/Ops.h" #include "mlir/Transforms/Passes.h" #include "llvm/ADT/SmallPtrSet.h" #include <algorithm> |

