summaryrefslogtreecommitdiffstats
path: root/arith.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-06-26 08:17:45 -0700
committerKaz Kylheku <kaz@kylheku.com>2014-06-26 08:17:45 -0700
commit4c581811e5370fd868a64e870d7ac046a606377b (patch)
tree852db519a15d7530072d91945562fca299face68 /arith.c
parent4a9df6afcc6fe8ce8d7bac2d28b914a917d002f7 (diff)
downloadtxr-4c581811e5370fd868a64e870d7ac046a606377b.tar.gz
txr-4c581811e5370fd868a64e870d7ac046a606377b.tar.bz2
txr-4c581811e5370fd868a64e870d7ac046a606377b.zip
Fixes to bignum bit operations affecting pretty much all bit operations
when bit field operands are negative, affecting logand, logor, logxor, lognot, logtrunc, logtest and ash. In addition, logtest was found to return the logical inverse of its correct value. * arith.c (logtest): Fix broken boolean polarity of return value. * mpi-patches/add-bitops (mp_2comp): Fix incorrect treatment of negative values. (mp_and): Fix incorrectly ordered statements, which cause failure when operands are negative.
Diffstat (limited to 'arith.c')
-rw-r--r--arith.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arith.c b/arith.c
index b90f79bc..c52cdb6c 100644
--- a/arith.c
+++ b/arith.c
@@ -1655,7 +1655,7 @@ bad:
val logtest(val a, val b)
{
/* TODO: optimize */
- return logand(a, b) == zero ? t : nil;
+ return logand(a, b) == zero ? nil : t;
}
static val comp_trunc(val a, val bits)