fhdl: remove broken fragment iadd

This commit is contained in:
Sebastien Bourdeauducq 2011-12-11 01:10:59 +01:00
parent b00581616e
commit 019ef16db4
1 changed files with 0 additions and 6 deletions

View File

@ -205,9 +205,3 @@ class Fragment:
self.sync.l + other.sync.l,
self.instances + other.instances,
self.pads | other.pads)
def __iadd__(self, other):
self.comb.l += other.comb.l
self.sync.l += other.sync.l
self.instances += other.instances
self.pads |= other.pads
return self