aboutsummaryrefslogtreecommitdiffstats
path: root/backends/autotest
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-07-22 20:15:14 +0200
committerClifford Wolf <clifford@clifford.at>2014-07-22 20:39:37 +0200
commit4b4048bc5feba1ab05c7a63f12c0a17879cb7e04 (patch)
tree27801c4b0171a2491ff6817ebb6d2a1d1484c086 /backends/autotest
parent16e5ae0b92ac4b7568cb11a769e612e152c0042e (diff)
downloadyosys-4b4048bc5feba1ab05c7a63f12c0a17879cb7e04.tar.gz
yosys-4b4048bc5feba1ab05c7a63f12c0a17879cb7e04.tar.bz2
yosys-4b4048bc5feba1ab05c7a63f12c0a17879cb7e04.zip
SigSpec refactoring: using the accessor functions everywhere
Diffstat (limited to 'backends/autotest')
-rw-r--r--backends/autotest/autotest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/autotest/autotest.cc b/backends/autotest/autotest.cc
index e7fbfe7a5..028d1f37a 100644
--- a/backends/autotest/autotest.cc
+++ b/backends/autotest/autotest.cc
@@ -119,8 +119,8 @@ static void autotest(FILE *f, RTLIL::Design *design)
if ((*it4)->type == RTLIL::ST0 || (*it4)->type == RTLIL::ST1)
continue;
RTLIL::SigSpec &signal = (*it4)->signal;
- for (size_t i = 0; i < signal.__chunks.size(); i++) {
- if (signal.__chunks[i].wire == wire)
+ for (size_t i = 0; i < signal.chunks().size(); i++) {
+ if (signal.chunks()[i].wire == wire)
is_clksignal = true;
}
}