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 602a7c5 commit a57b7e9Copy full SHA for a57b7e9
mlir/lib/Transforms/Mem2Reg.cpp
@@ -286,7 +286,7 @@ LogicalResult MemorySlotPromotionAnalyzer::computeBlockingUses(
286
mlir::getForwardSlice(slot.ptr, &forwardSlice);
287
for (Operation *user : forwardSlice) {
288
// If the next operation has no blocking uses, everything is fine.
289
- auto it = userToBlockingUses.find(user);
+ auto *it = userToBlockingUses.find(user);
290
if (it == userToBlockingUses.end())
291
continue;
292
0 commit comments