From: Jean-François Nguyen Date: Sat, 12 Oct 2019 21:44:39 +0000 (+0200) Subject: back.rtlil: fix DeprecationWarning. NFC. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fe47ecb68721a3803081346904d09057e381ae36;p=nmigen.git back.rtlil: fix DeprecationWarning. NFC. --- diff --git a/nmigen/back/rtlil.py b/nmigen/back/rtlil.py index 78628a7..07207f4 100644 --- a/nmigen/back/rtlil.py +++ b/nmigen/back/rtlil.py @@ -729,14 +729,14 @@ class _StatementCompiler(xfrm.StatementVisitor): except LegalizeValue as legalize: with self._case.switch(self.rhs_compiler(legalize.value), src=src(legalize.src_loc)) as switch: - width, signed = legalize.value.shape() - tests = ["{:0{}b}".format(v, width) for v in legalize.branches] + shape = legalize.value.shape() + tests = ["{:0{}b}".format(v, shape.width) for v in legalize.branches] if tests: - tests[-1] = "-" * width + tests[-1] = "-" * shape.width for branch, test in zip(legalize.branches, tests): with self.case(switch, (test,)): self._wrap_assign = False - branch_value = ast.Const(branch, (width, signed)) + branch_value = ast.Const(branch, shape) with self.state.expand_to(legalize.value, branch_value): self.on_statement(stmt) self._wrap_assign = True