back.rtlil: update for Yosys master.

This commit is contained in:
whitequark 2018-12-17 15:50:43 +00:00
parent 850674637a
commit f1e390cbc9

View file

@ -451,9 +451,7 @@ class _RHSValueCompiler(_ValueCompiler):
raise TypeError # :nocov:
def _prepare_value_for_Slice(self, value):
# Uncomment after the following is merged: https://github.com/YosysHQ/yosys/pull/741
# if isinstance(value, (ast.Signal, ast.Slice, ast.Cat)):
if isinstance(value, ast.Signal):
if isinstance(value, (ast.Signal, ast.Slice, ast.Cat)):
sigspec = self(value)
else:
sigspec = self.s.rtlil.wire(len(value))