File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2323USING_YOSYS_NAMESPACE
2424PRIVATE_NAMESPACE_BEGIN
2525
26- struct ThresholdHiearchyKeeping {
26+ struct ThresholdHierarchyKeeping {
2727 Design *design;
2828 CellCosts costs;
2929 dict<Module *, int > done;
3030 pool<Module *> in_progress;
3131 uint64_t threshold;
3232
33- ThresholdHiearchyKeeping (Design *design, uint64_t threshold)
33+ ThresholdHierarchyKeeping (Design *design, uint64_t threshold)
3434 : design(design), costs(design), threshold(threshold) {}
3535
3636 uint64_t visit (RTLIL::Module *module ) {
@@ -116,7 +116,7 @@ struct KeepHierarchyPass : public Pass {
116116 if (!top)
117117 log_cmd_error (" '-min_cost' mode requires a single top module in the design\n " );
118118
119- ThresholdHiearchyKeeping worker (design, min_cost);
119+ ThresholdHierarchyKeeping worker (design, min_cost);
120120 worker.visit (top);
121121 } else {
122122 for (auto module : design->selected_modules ()) {
You can’t perform that action at this time.
0 commit comments