aboutsummaryrefslogtreecommitdiffstats
path: root/passes/opt
diff options
context:
space:
mode:
authorN. Engelhardt <nak@symbioticeda.com>2020-09-14 12:43:18 +0200
committerN. Engelhardt <nak@symbioticeda.com>2020-09-14 12:43:18 +0200
commit32381907972e16d5f72705eaf5350b731a9d71c8 (patch)
tree73c08e35387cb9df6d69cf0d9129b03e115fd69c /passes/opt
parent4af04be0b7bb493a86a35a60f3b18d88df6b8ea9 (diff)
downloadyosys-32381907972e16d5f72705eaf5350b731a9d71c8.tar.gz
yosys-32381907972e16d5f72705eaf5350b731a9d71c8.tar.bz2
yosys-32381907972e16d5f72705eaf5350b731a9d71c8.zip
use the new isPublic() in a few places
Diffstat (limited to 'passes/opt')
-rw-r--r--passes/opt/opt_clean.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/passes/opt/opt_clean.cc b/passes/opt/opt_clean.cc
index 5370881d3..bd9856e81 100644
--- a/passes/opt/opt_clean.cc
+++ b/passes/opt/opt_clean.cc
@@ -207,7 +207,7 @@ bool compare_signals(RTLIL::SigBit &s1, RTLIL::SigBit &s2, SigPool &regs, SigPoo
if ((w1->port_input && w1->port_output) != (w2->port_input && w2->port_output))
return !(w2->port_input && w2->port_output);
- if (w1->name[0] == '\\' && w2->name[0] == '\\') {
+ if (w1->name.isPublic() && w2->name.isPublic()) {
if (regs.check(s1) != regs.check(s2))
return regs.check(s2);
if (direct_wires.count(w1) != direct_wires.count(w2))
@@ -220,7 +220,7 @@ bool compare_signals(RTLIL::SigBit &s1, RTLIL::SigBit &s2, SigPool &regs, SigPoo
return w2->port_output;
if (w1->name[0] != w2->name[0])
- return w2->name[0] == '\\';
+ return w2->name.isPublic();
int attrs1 = count_nontrivial_wire_attrs(w1);
int attrs2 = count_nontrivial_wire_attrs(w2);