Skip to content

Commit

Permalink
Merge pull request #116 from jck/signamevisitor
Browse files Browse the repository at this point in the history
prevent adding intbv to senslist of always_comb
  • Loading branch information
jandecaluwe committed Jul 28, 2015
2 parents c7d92c4 + 443024f commit 0f10650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion myhdl/_always_comb.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def __init__(self, func, symdict):
s = self.symdict[n]
if isinstance(s, _Signal):
senslist.append(s)
else: # list of sigs
elif _isListOfSigs(s):
senslist.extend(s)
self.senslist = tuple(senslist)
if len(self.senslist) == 0:
Expand Down

0 comments on commit 0f10650

Please sign in to comment.