summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-09-17 07:37:40 -0700
committerKaz Kylheku <kaz@kylheku.com>2012-09-17 07:37:40 -0700
commit01628a8244053ced7dd0f20e13e4ce3ff3e81481 (patch)
treef92cca343580e6d1f6035482f3eaa8c2aae6a3cf /ChangeLog
parente27921f29d6b78d5c868d9160e5c12e9a49b4f97 (diff)
downloadtxr-01628a8244053ced7dd0f20e13e4ce3ff3e81481.tar.gz
txr-01628a8244053ced7dd0f20e13e4ce3ff3e81481.tar.bz2
txr-01628a8244053ced7dd0f20e13e4ce3ff3e81481.zip
* arith.c (highest_significant_bit): New static function.
(comp_clamp): Bugfix: avoid shifting left into sign bit. Function renamed to comp_trunc. (logtrunc, ash): New functions. * eval.c (eval_init): Registered logtrunc and ash intrinsics. * lib.h (logtrunc, ash): Declared. * mpi-patches/add-bitops (s_highest_bit_mp): Forward declaration for added. (mp_clamp_comp): Bugfix in handling remainder bits. Function renamed to mp_trunc_comp. (mp_trunc, mp_shift): New functions.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog32
1 files changed, 32 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index fbd21451..c6c065dd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,35 @@
+2012-09-17 Kaz Kylheku <kaz@kylheku.com>
+
+ * arith.c (highest_significant_bit): New static function.
+ (comp_clamp): Bugfix: avoid shifting left into sign bit. Function
+ renamed to comp_trunc.
+ (logtrunc, ash): New functions.
+
+ * eval.c (eval_init): Registered logtrunc and ash intrinsics.
+
+ * lib.h (logtrunc, ash): Declared.
+
+ * mpi-patches/add-bitops (s_highest_bit_mp): Forward declaration for
+ added.
+ (mp_clamp_comp): Bugfix in handling remainder bits. Function
+ renamed to mp_trunc_comp.
+ (mp_trunc, mp_shift): New functions.
+
+2012-09-17 Kaz Kylheku <kaz@kylheku.com>
+
+ * arith.c (highest_significant_bit): New static function.
+ (comp_clamp): Bugfix: avoid shifting left into sign bit.
+ (logclamp, ash): New functions.
+
+ * eval.c (eval_init): Registered logclamp and ash intrinsics.
+
+ * lib.h (logclamp, ash): Declared.
+
+ * mpi-patches/add-bitops (s_highest_bit_mp): Forward declaration for
+ added.
+ (mp_comp_clamp): Bugfix in handling remainder bits.
+ (mp_clamp, mp_shift): New functions.
+
2012-09-16 Kaz Kylheku <kaz@kylheku.com>
* mpi-patches/add-bitops: Bugfixes: mp_2comp is extended to properly