diff options
| author | Uday Bondhugula <bondhugula@google.com> | 2019-02-06 21:54:18 -0800 |
|---|---|---|
| committer | jpienaar <jpienaar@google.com> | 2019-03-29 16:19:33 -0700 |
| commit | 4ba8c9147d04d82d629dde4730e1dd5d4ae4123d (patch) | |
| tree | b16681ef2a8f2327993d1f4b75596ce100732403 /mlir/lib/AffineOps/AffineOps.cpp | |
| parent | 99fee0b181106a0213501800c6076aec95afa46c (diff) | |
| download | bcm5719-llvm-4ba8c9147d04d82d629dde4730e1dd5d4ae4123d.tar.gz bcm5719-llvm-4ba8c9147d04d82d629dde4730e1dd5d4ae4123d.zip | |
Automated rollback of changelist 232717775.
PiperOrigin-RevId: 232807986
Diffstat (limited to 'mlir/lib/AffineOps/AffineOps.cpp')
| -rw-r--r-- | mlir/lib/AffineOps/AffineOps.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mlir/lib/AffineOps/AffineOps.cpp b/mlir/lib/AffineOps/AffineOps.cpp index 858b8bd791d..9da155f09d8 100644 --- a/mlir/lib/AffineOps/AffineOps.cpp +++ b/mlir/lib/AffineOps/AffineOps.cpp @@ -35,7 +35,7 @@ using llvm::dbgs; //===----------------------------------------------------------------------===// AffineOpsDialect::AffineOpsDialect(MLIRContext *context) - : Dialect(/*namePrefix=*/"affine", context) { + : Dialect(/*namePrefix=*/"", context) { addOperations<AffineApplyOp, AffineForOp, AffineIfOp>(); } @@ -716,7 +716,7 @@ static void printBound(AffineBound bound, const char *prefix, OpAsmPrinter *p) { } void AffineForOp::print(OpAsmPrinter *p) const { - *p << "affine.for "; + *p << "for "; p->printOperand(getBody()->getArgument(0)); *p << " = "; printBound(getLowerBound(), "max", p); |

