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 a90a09f commit d1cafe2Copy full SHA for d1cafe2
mlir/lib/Transforms/Utils/RegionUtils.cpp
@@ -159,7 +159,7 @@ SmallVector<Value> mlir::makeRegionIsolatedFromAbove(
159
rewriter.replaceUsesWithIf(capturedVal, arg, replaceIfFn);
160
}
161
rewriter.setInsertionPointToStart(newEntryBlock);
162
- for (auto clonedOp : clonedOperations) {
+ for (auto *clonedOp : clonedOperations) {
163
Operation *newOp = rewriter.clone(*clonedOp, map);
164
rewriter.replaceOpWithIf(clonedOp, newOp->getResults(), replaceIfFn);
165
0 commit comments