From: Luke Kenneth Casson Leighton Date: Sun, 9 Feb 2020 18:41:34 +0000 (+0000) Subject: invert after all() not before X-Git-Tag: ls180-24jan2020~212 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6e0361cafe8fea1fd07f4192eeea7fdf869de4af;p=ieee754fpu.git invert after all() not before --- diff --git a/src/ieee754/fpdiv/mulAddRecFN.py b/src/ieee754/fpdiv/mulAddRecFN.py index ca85f3da..3432ccc1 100644 --- a/src/ieee754/fpdiv/mulAddRecFN.py +++ b/src/ieee754/fpdiv/mulAddRecFN.py @@ -338,7 +338,7 @@ class mulAddRecFNToRaw_postMul(Elaboratable): intermed_highAlignedSigC[(sigWidth + 1):sigWidth], 0b0))), CDom_absSigSumExtra.eq(Mux(doSubMags, - ~(sigSum[1:sigWidth+1]).all()), + ~(sigSum[1:sigWidth+1].all())), sigSum[1:sigWidth + 2].bool())), CDom_mainSig.eq( (CDom_absSigSum<>(sigWidth - 3)),