mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-04 18:30:25 +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
|
@ -140,8 +140,8 @@ struct SplitnetsPass : public Pass {
|
|||
|
||||
for (auto wire : module->wires())
|
||||
if (wire->port_id != 0) {
|
||||
normalized_port_factor = std::max(normalized_port_factor, wire->port_id+1);
|
||||
normalized_port_factor = std::max(normalized_port_factor, GetSize(wire)+1);
|
||||
normalized_port_factor = max(normalized_port_factor, wire->port_id+1);
|
||||
normalized_port_factor = max(normalized_port_factor, GetSize(wire)+1);
|
||||
}
|
||||
|
||||
for (auto wire : module->wires())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue