mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 06:07:26 +02:00
Renamed extend() to extend_xx(), changed most users to extend_u0()
This commit is contained in:
@@ -262,7 +262,7 @@ struct ProcArstPass : public Pass {
|
||||
for (auto &chunk : act.first.chunks())
|
||||
if (chunk.wire && chunk.wire->attributes.count("\\init")) {
|
||||
RTLIL::SigSpec value = chunk.wire->attributes.at("\\init");
|
||||
value.extend(chunk.wire->width, false);
|
||||
value.extend_xx(chunk.wire->width, false);
|
||||
arst_sig.append(chunk);
|
||||
arst_val.append(value.extract(chunk.offset, chunk.width));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user