summaryrefslogtreecommitdiff
path: root/backends/spice/spice.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-12-24 09:51:17 +0100
committerClifford Wolf <clifford@clifford.at>2014-12-24 09:51:17 +0100
commitedb3c9d0c4f0bc3a108ffebc01f02ff4d7354487 (patch)
tree602fc633af5de89d2d6d1bda480159318f4aa91d /backends/spice/spice.cc
parent48ca1ff9ef5bba939348ceeec75ad310afd9fcf8 (diff)
Renamed extend() to extend_xx(), changed most users to extend_u0()
Diffstat (limited to 'backends/spice/spice.cc')
-rw-r--r--backends/spice/spice.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/spice/spice.cc b/backends/spice/spice.cc
index 390822ed..2c614178 100644
--- a/backends/spice/spice.cc
+++ b/backends/spice/spice.cc
@@ -84,7 +84,7 @@ static void print_spice_module(std::ostream &f, RTLIL::Module *module, RTLIL::De
RTLIL::SigSpec sig(RTLIL::State::Sz, wire->width);
if (cell->hasPort(wire->name)) {
sig = sigmap(cell->getPort(wire->name));
- sig.extend(wire->width, false);
+ sig.extend_u0(wire->width, false);
}
port_sigs.push_back(sig);
}