mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-09 12:50:33 +00:00
Import more std:: stuff into Yosys namespace
This commit is contained in:
parent
da923c198e
commit
207736b4ee
39 changed files with 168 additions and 161 deletions
|
@ -63,7 +63,7 @@ struct EquivAddPass : public Pass {
|
|||
auto port = conn.first;
|
||||
SigSpec gold_sig = gold_cell->getPort(port);
|
||||
SigSpec gate_sig = gate_cell->getPort(port);
|
||||
int width = std::min(GetSize(gold_sig), GetSize(gate_sig));
|
||||
int width = min(GetSize(gold_sig), GetSize(gate_sig));
|
||||
|
||||
if (gold_cell->input(port) && gate_cell->input(port))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue