diff --git a/mlir/lib/Analysis/DataFlowFramework.cpp b/mlir/lib/Analysis/DataFlowFramework.cpp index cc2c9eb8b5aa5..76bf94aed9e02 100644 --- a/mlir/lib/Analysis/DataFlowFramework.cpp +++ b/mlir/lib/Analysis/DataFlowFramework.cpp @@ -45,7 +45,7 @@ void AnalysisState::addDependency(ProgramPoint *dependent, DATAFLOW_DEBUG({ if (inserted) { LDBG() << "Creating dependency between " << debugName << " of " << anchor - << "\nand " << debugName << " on " << dependent; + << "\nand " << debugName << " on " << *dependent; } }); } @@ -128,7 +128,7 @@ LogicalResult DataFlowSolver::initializeAndRun(Operation *top) { worklist.pop(); DATAFLOW_DEBUG(LDBG() << "Invoking '" << analysis->debugName - << "' on: " << point); + << "' on: " << *point); if (failed(analysis->visit(point))) return failure(); }