diff options
| author | Jacques Pienaar <jpienaar@google.com> | 2018-10-10 14:23:30 -0700 |
|---|---|---|
| committer | jpienaar <jpienaar@google.com> | 2019-03-29 13:28:12 -0700 |
| commit | 764fd035b0a03359680444d2fbae9e511aaa8652 (patch) | |
| tree | 5fd28ec99f2683c0a8217e454db3f73ae59f55a9 /mlir/lib/Transforms/PipelineDataTransfer.cpp | |
| parent | d05e1f5dd5311debb43eff9434534f775b5fe2c6 (diff) | |
| download | bcm5719-llvm-764fd035b0a03359680444d2fbae9e511aaa8652.tar.gz bcm5719-llvm-764fd035b0a03359680444d2fbae9e511aaa8652.zip | |
Split BuiltinOps out of StandardOps.
* Move Return, Constant and AffineApply out into BuiltinOps;
* BuiltinOps are always registered, while StandardOps follow the same dynamic registration;
* Kept isValidX in MLValue as we don't have a verify on AffineMap so need to keep it callable from Parser (I wanted to move it to be called in verify instead);
PiperOrigin-RevId: 216592527
Diffstat (limited to 'mlir/lib/Transforms/PipelineDataTransfer.cpp')
| -rw-r--r-- | mlir/lib/Transforms/PipelineDataTransfer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mlir/lib/Transforms/PipelineDataTransfer.cpp b/mlir/lib/Transforms/PipelineDataTransfer.cpp index 87899564172..dd8b9a7615c 100644 --- a/mlir/lib/Transforms/PipelineDataTransfer.cpp +++ b/mlir/lib/Transforms/PipelineDataTransfer.cpp @@ -23,7 +23,8 @@ #include "mlir/IR/AffineExpr.h" #include "mlir/IR/Builders.h" -#include "mlir/IR/StandardOps.h" +#include "mlir/IR/BuiltinOps.h" +#include "mlir/StandardOps/StandardOps.h" #include "mlir/Transforms/LoopUtils.h" #include "mlir/Transforms/Pass.h" #include "mlir/Transforms/Utils.h" |

