mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #1887 from boqwxp/cleanup_hilomap
Clean up `passes/techmap/hilomap.cc`.
This commit is contained in:
commit
14d24bc589
|
@ -105,13 +105,9 @@ struct HilomapPass : public Pass {
|
||||||
}
|
}
|
||||||
extra_args(args, argidx, design);
|
extra_args(args, argidx, design);
|
||||||
|
|
||||||
for (auto &it : design->modules_)
|
for (auto mod : design->selected_modules())
|
||||||
{
|
{
|
||||||
module = it.second;
|
module = mod;
|
||||||
|
|
||||||
if (!design->selected(module))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
last_hi = RTLIL::State::Sm;
|
last_hi = RTLIL::State::Sm;
|
||||||
last_lo = RTLIL::State::Sm;
|
last_lo = RTLIL::State::Sm;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue