diff --git a/passes/techmap/abc_new.cc b/passes/techmap/abc_new.cc index 4a4f3cee8..4e279c577 100644 --- a/passes/techmap/abc_new.cc +++ b/passes/techmap/abc_new.cc @@ -38,8 +38,8 @@ std::vector order_modules(Design *design, std::vector modules sort.edge(submodule, m); } } - bool sorted = sort.sort(); - log_assert(sorted); + bool is_sorted = sort.sort(); + log_assert(is_sorted); return sort.sorted; }