3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-20 07:36:39 +00:00

clean, not backtracking

This commit is contained in:
Emil J. Tywoniak 2024-06-12 19:37:45 +02:00
parent 33987d975e
commit 2d6c45469f

View file

@ -1041,7 +1041,7 @@ namespace {
if (it == cell->parameters.end())
error(__LINE__);
expected_params.insert(name);
return it->second.as_int();
return (*it).second.as_int();
}
int param_bool(const RTLIL::IdString& name)
@ -1080,7 +1080,7 @@ namespace {
auto it = cell->connections_.find(name);
if (it == cell->connections_.end())
error(__LINE__);
if (GetSize(it->second) != width)
if (GetSize((*it).second) != width)
error(__LINE__);
expected_ports.insert(name);
}