diff options
| author | Chris Lattner <clattner@google.com> | 2018-12-27 21:21:41 -0800 |
|---|---|---|
| committer | jpienaar <jpienaar@google.com> | 2019-03-29 14:42:23 -0700 |
| commit | 5187cfcf03d36fcd9a08adb768d0bc584ef9e50d (patch) | |
| tree | a78a2e7454c02452df8370b107a1c1ed336bad64 /mlir/lib/Transforms/Utils/LoopUtils.cpp | |
| parent | 3b021d7f2e6bfd42593af76c02d2aa9c26beaaf0 (diff) | |
| download | bcm5719-llvm-5187cfcf03d36fcd9a08adb768d0bc584ef9e50d.tar.gz bcm5719-llvm-5187cfcf03d36fcd9a08adb768d0bc584ef9e50d.zip | |
Merge Operation into OperationInst and standardize nomenclature around
OperationInst. This is a big mechanical patch.
This is step 16/n towards merging instructions and statements, NFC.
PiperOrigin-RevId: 227093712
Diffstat (limited to 'mlir/lib/Transforms/Utils/LoopUtils.cpp')
| -rw-r--r-- | mlir/lib/Transforms/Utils/LoopUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/lib/Transforms/Utils/LoopUtils.cpp b/mlir/lib/Transforms/Utils/LoopUtils.cpp index b92e15d7857..4a2831c0a83 100644 --- a/mlir/lib/Transforms/Utils/LoopUtils.cpp +++ b/mlir/lib/Transforms/Utils/LoopUtils.cpp @@ -156,7 +156,7 @@ generateLoop(AffineMap lbMap, AffineMap ubMap, auto *loopChunk = b->createFor(srcForStmt->getLoc(), lbOperands, lbMap, ubOperands, ubMap, srcForStmt->getStep()); - OperationStmt::OperandMapTy operandMap; + OperationInst::OperandMapTy operandMap; for (auto it = stmtGroupQueue.begin() + offset, e = stmtGroupQueue.end(); it != e; ++it) { |

