From: Sebastien Bourdeauducq Date: Sun, 11 Dec 2011 00:10:59 +0000 (+0100) Subject: fhdl: remove broken fragment iadd X-Git-Tag: 24jan2021_ls180~2099^2~1150 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=019ef16db4cba7de15a3496f11fae4b14e4737ce;p=litex.git fhdl: remove broken fragment iadd --- diff --git a/migen/fhdl/structure.py b/migen/fhdl/structure.py index 2580cf0a..f531ff3e 100644 --- a/migen/fhdl/structure.py +++ b/migen/fhdl/structure.py @@ -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