Skip to content

Commit a48e50b

Browse files
committed
compilation error due to losing ';'s
1 parent 5b2da96 commit a48e50b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/Dialect/FIRRTL/Transforms/InferWidths_new.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ Valuation floyd(const std::vector<Constraint1> &constraints,
729729
LLVM_DEBUG({llvm::dbgs() << "numberin:\n";
730730
for (const auto &[var, index] : var_to_index)
731731
llvm::dbgs() << var << " : " << index << "\n";
732-
})
732+
});
733733

734734
int n = var_to_index.size();
735735
std::vector<std::vector<int>> graph(n, std::vector<int>(n, INF));
@@ -810,7 +810,7 @@ Valuation floyd(const std::vector<Constraint1> &constraints,
810810
LLVM_DEBUG({llvm::dbgs() << "floyd result:\n";
811811
for (const auto &[var, value] : valuation)
812812
llvm::dbgs() << var_to_index[var] << " : " << value << "\n";
813-
})
813+
});
814814

815815
return valuation;
816816
}
@@ -823,7 +823,7 @@ LogicalResult ConstraintSolver::solve() {
823823
for (Node *node : node_list)
824824
lvm::dbgs() << node->field << "; ";
825825
llvm::dbgs() << "\n";
826-
})
826+
});
827827

828828
std::vector<FieldRef> component = extractFieldRefs(node_list);
829829
if (component.empty()) {

0 commit comments

Comments
 (0)