Skip to content

Commit 7368047

Browse files
author
git apple-llvm automerger
committed
Merge commit '68967252701f' from llvm.org/main into next
2 parents 3fcebb6 + 6896725 commit 7368047

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/lib/Analysis/DataFlowFramework.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ void AnalysisState::addDependency(ProgramPoint *dependent,
4545
DATAFLOW_DEBUG({
4646
if (inserted) {
4747
LDBG() << "Creating dependency between " << debugName << " of " << anchor
48-
<< "\nand " << debugName << " on " << dependent;
48+
<< "\nand " << debugName << " on " << *dependent;
4949
}
5050
});
5151
}
@@ -128,7 +128,7 @@ LogicalResult DataFlowSolver::initializeAndRun(Operation *top) {
128128
worklist.pop();
129129

130130
DATAFLOW_DEBUG(LDBG() << "Invoking '" << analysis->debugName
131-
<< "' on: " << point);
131+
<< "' on: " << *point);
132132
if (failed(analysis->visit(point)))
133133
return failure();
134134
}

0 commit comments

Comments
 (0)