From 1fc8a3089669c0b3b4aa8d7d89d7277834b34a06 Mon Sep 17 00:00:00 2001 From: dtc <dtc> Date: Thu, 11 Nov 1999 14:46:25 +0000 Subject: [PATCH] Fix the rounding of large numbers in %unary-round, noted by Akira Kurihara. --- code/float.lisp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/code/float.lisp b/code/float.lisp index 426c86806..28ec73fe3 100644 --- a/code/float.lisp +++ b/code/float.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/float.lisp,v 1.18 1998/03/21 08:11:56 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/float.lisp,v 1.19 1999/11/11 14:46:25 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1041,13 +1041,11 @@ rounding modes & do ieee round-to-integer. (float most-positive-fixnum number)) (truly-the fixnum (%unary-round number)) (multiple-value-bind (bits exp) - (integer-decode-float number) + (integer-decode-float number) (let* ((shifted (ash bits exp)) (rounded (if (and (minusp exp) - (oddp shifted) - (eql (logand bits - (lognot (ash -1 (- exp)))) - (ash 1 (- -1 exp)))) + (not (zerop (logand bits + (ash 1 (- -1 exp)))))) (1+ shifted) shifted))) (if (minusp number) -- GitLab