diff options
| author | Nicolas Vasilache <ntv@google.com> | 2019-06-20 15:10:35 -0700 |
|---|---|---|
| committer | jpienaar <jpienaar@google.com> | 2019-06-22 09:14:49 -0700 |
| commit | 0804750c9b529f93764a0fcbb3557064dfeda72a (patch) | |
| tree | c918f92bd227180fb1d4a79af603da651d4dcc21 /mlir/lib/Transforms/LoopUnrollAndJam.cpp | |
| parent | e19a0857a2925fc9aada9293206f7e9ad93ad8c5 (diff) | |
| download | bcm5719-llvm-0804750c9b529f93764a0fcbb3557064dfeda72a.tar.gz bcm5719-llvm-0804750c9b529f93764a0fcbb3557064dfeda72a.zip | |
Uniformize usage of OpBuilder& (NFC)
Historically the pointer-based version of builders was used.
This CL uniformizes to OpBuilder &
PiperOrigin-RevId: 254280885
Diffstat (limited to 'mlir/lib/Transforms/LoopUnrollAndJam.cpp')
| -rw-r--r-- | mlir/lib/Transforms/LoopUnrollAndJam.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/lib/Transforms/LoopUnrollAndJam.cpp b/mlir/lib/Transforms/LoopUnrollAndJam.cpp index 409eb397df4..7650db1ce27 100644 --- a/mlir/lib/Transforms/LoopUnrollAndJam.cpp +++ b/mlir/lib/Transforms/LoopUnrollAndJam.cpp @@ -192,7 +192,7 @@ LogicalResult mlir::loopUnrollJamByFactor(AffineForOp forOp, AffineMap cleanupMap; SmallVector<Value *, 4> cleanupOperands; getCleanupLoopLowerBound(forOp, unrollJamFactor, &cleanupMap, - &cleanupOperands, &builder); + &cleanupOperands, builder); cleanupAffineForOp.setLowerBound(cleanupOperands, cleanupMap); // Promote the cleanup loop if it has turned into a single iteration loop. |

