We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45ba533 commit 16ec3a6Copy full SHA for 16ec3a6
mlir/lib/Dialect/Tensor/Transforms/SwapExtractSliceWithProducerPatterns.cpp
@@ -77,7 +77,7 @@ FailureOr<TilingResult> tensor::replaceInsertSlicesWithTiledConsumer(
77
dyn_cast<TilingInterface>(consumerOperands.front()->getOwner());
78
if (!consumerOp)
79
return failure();
80
- for (auto opOperand : consumerOperands.drop_front()) {
+ for (auto *opOperand : consumerOperands.drop_front()) {
81
if (opOperand->getOwner() != consumerOp) {
82
LLVM_DEBUG({
83
llvm::dbgs()
0 commit comments