X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Ffloat.lisp;h=407b309be12fd4f5301bf518212c2dfaef35709a;hb=4f2091cda26c2f3004a31704910344bce3288eea;hp=be7a92ccc7e1f9fee4afe107fe18b19a1b9e5c76;hpb=efb7317381c54e1a28f6c1c179a4fb8d58fdc7eb;p=sbcl.git diff --git a/src/code/float.lisp b/src/code/float.lisp index be7a92c..407b309 100644 --- a/src/code/float.lisp +++ b/src/code/float.lisp @@ -56,12 +56,12 @@ (defconstant least-negative-short-float least-negative-single-float) (defconstant least-positive-double-float (double-from-bits 0 0 1)) #!-long-float -(defconstant least-positive-long-float least-positive-double-float) +(defconstant least-positive-long-float (double-from-bits 0 0 1)) #!+(and long-float x86) (defconstant least-positive-long-float (long-from-bits 0 0 1)) (defconstant least-negative-double-float (double-from-bits 1 0 1)) #!-long-float -(defconstant least-negative-long-float least-negative-double-float) +(defconstant least-negative-long-float (double-from-bits 1 0 1)) #!+(and long-float x86) (defconstant least-negative-long-float (long-from-bits 1 0 1)) @@ -314,6 +314,7 @@ (defun float-radix (x) #!+sb-doc "Return (as an integer) the radix b of its floating-point argument." + (declare (ignore x)) 2) ;;;; INTEGER-DECODE-FLOAT and DECODE-FLOAT