From: Luke Kenneth Casson Leighton Date: Sun, 9 Feb 2020 18:41:03 +0000 (+0000) Subject: boolean logic invert bool to all X-Git-Tag: ls180-24jan2020~213 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=44a48437706e09010d3b9b397730de1e45ce2638;p=ieee754fpu.git boolean logic invert bool to all --- diff --git a/src/ieee754/fpdiv/mulAddRecFN.py b/src/ieee754/fpdiv/mulAddRecFN.py index 5a36706f..ca85f3da 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]).bool(), + ~(sigSum[1:sigWidth+1]).all()), sigSum[1:sigWidth + 2].bool())), CDom_mainSig.eq( (CDom_absSigSum<>(sigWidth - 3)),