mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-30 07:53:16 +00:00
73%
This commit is contained in:
parent
4c9f68216a
commit
eeb15ea2a2
17 changed files with 121 additions and 38 deletions
|
@ -481,11 +481,11 @@ struct ShareWorker
|
|||
return true;
|
||||
}
|
||||
|
||||
for (auto &it : c1->parameters)
|
||||
for (auto it : c1->parameters)
|
||||
if (c2->parameters.count(it.first) == 0 || c2->parameters.at(it.first) != it.second)
|
||||
return false;
|
||||
|
||||
for (auto &it : c2->parameters)
|
||||
for (auto it : c2->parameters)
|
||||
if (c1->parameters.count(it.first) == 0 || c1->parameters.at(it.first) != it.second)
|
||||
return false;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue