Skip to content

Commit 7b181d8

Browse files
Update mlir/examples/dataflow/lib/Analysis/MetadataAnalysis.cpp
Co-authored-by: Mehdi Amini <[email protected]>
1 parent 614726e commit 7b181d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/examples/dataflow/lib/Analysis/MetadataAnalysis.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ LogicalResult MetadataAnalysis::visitOperation(
9090
// into the current lattice element for all of our results.`results` stores
9191
// the lattices corresponding to the results of op, We use a loop to traverse
9292
// them.
93-
for (auto result : results) {
93+
for (MetadataLatticeValueLattice *result : results) {
9494

9595
// `isChanged` records whether the result has been changed.
9696
ChangeResult isChanged = ChangeResult::NoChange;

0 commit comments

Comments
 (0)