From e62d838bd424995d2fcdc9cef1f56752905c3b4d Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Thu, 1 Jan 2015 11:41:52 +0100 Subject: Removed SigSpec::extend_xx() api --- passes/proc/proc_arst.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'passes/proc/proc_arst.cc') diff --git a/passes/proc/proc_arst.cc b/passes/proc/proc_arst.cc index 0874d0981..27c6b3bcf 100644 --- a/passes/proc/proc_arst.cc +++ b/passes/proc/proc_arst.cc @@ -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_xx(chunk.wire->width, false); + value.extend_u0(chunk.wire->width, false); arst_sig.append(chunk); arst_val.append(value.extract(chunk.offset, chunk.width)); } -- cgit v1.2.3