From 019ef16db4cba7de15a3496f11fae4b14e4737ce Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 11 Dec 2011 01:10:59 +0100 Subject: [PATCH] fhdl: remove broken fragment iadd --- migen/fhdl/structure.py | 6 ------ 1 file changed, 6 deletions(-) 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 -- 2.30.2