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 9a2a6a7 commit e730f76Copy full SHA for e730f76
mlir/lib/Dialect/GPU/Transforms/DecomposeMemrefs.cpp
@@ -30,7 +30,7 @@ namespace mlir {
30
using namespace mlir;
31
32
static void setInsertionPointToStart(OpBuilder &builder, Value val) {
33
- if (auto parentOp = val.getDefiningOp()) {
+ if (auto *parentOp = val.getDefiningOp()) {
34
builder.setInsertionPointAfter(parentOp);
35
} else {
36
builder.setInsertionPointToStart(val.getParentBlock());
0 commit comments