3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-07 03:31:24 +00:00

use the new isPublic() in a few places

This commit is contained in:
N. Engelhardt 2020-09-14 12:43:18 +02:00
parent 4af04be0b7
commit 3238190797
13 changed files with 25 additions and 25 deletions

View file

@ -81,7 +81,7 @@ struct statdata_t
for (auto wire : mod->selected_wires())
{
if (wire->name[0] == '\\') {
if (wire->name.isPublic()) {
num_pub_wires++;
num_pub_wire_bits += wire->width;
}