summaryrefslogtreecommitdiffstats
path: root/mlir/lib/Transforms/LoopTiling.cpp
diff options
context:
space:
mode:
authorMLIR Team <no-reply@google.com>2019-05-11 15:24:47 -0700
committerMehdi Amini <joker.eph@gmail.com>2019-05-20 13:37:20 -0700
commit41d90a85bd7942a9a27011f09c3a49cc32fdaeae (patch)
tree9f625898fd50551a4c4eb214e24ea29e23ac043a /mlir/lib/Transforms/LoopTiling.cpp
parent02e03b9bf4a1fe60b89d4bd662895ebcc374129b (diff)
downloadbcm5719-llvm-41d90a85bd7942a9a27011f09c3a49cc32fdaeae.tar.gz
bcm5719-llvm-41d90a85bd7942a9a27011f09c3a49cc32fdaeae.zip
Automated rollback of changelist 247778391.
PiperOrigin-RevId: 247778691
Diffstat (limited to 'mlir/lib/Transforms/LoopTiling.cpp')
-rw-r--r--mlir/lib/Transforms/LoopTiling.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/lib/Transforms/LoopTiling.cpp b/mlir/lib/Transforms/LoopTiling.cpp
index 28e13d89ada..ce42a5eba85 100644
--- a/mlir/lib/Transforms/LoopTiling.cpp
+++ b/mlir/lib/Transforms/LoopTiling.cpp
@@ -273,7 +273,7 @@ static void getTileableBands(Function &f,
for (auto &block : f)
for (auto &op : block)
- if (auto forOp = dyn_cast<AffineForOp>(op))
+ if (auto forOp = op.dyn_cast<AffineForOp>())
getMaximalPerfectLoopNest(forOp);
}
OpenPOWER on IntegriCloud