X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Ffloat.lisp;h=6f46ab23dd15ee3fa827576157a3fd1c2eb12d78;hb=f9aaac53a4a43ebae198f53079857acb2d628eb0;hp=14c1a790599dd4fe4bcde5729cebcaaf703c01d6;hpb=1c91b0bc7eb814af6a8c58a99a83a024716138e8;p=sbcl.git diff --git a/src/code/float.lisp b/src/code/float.lisp index 14c1a79..6f46ab2 100644 --- a/src/code/float.lisp +++ b/src/code/float.lisp @@ -51,9 +51,9 @@ ;;;; float parameters (defconstant least-positive-single-float (single-from-bits 0 0 1)) -(defconstant least-positive-short-float least-positive-single-float) +(defconstant least-positive-short-float (single-from-bits 0 0 1)) (defconstant least-negative-single-float (single-from-bits 1 0 1)) -(defconstant least-negative-short-float least-negative-single-float) +(defconstant least-negative-short-float (single-from-bits 1 0 1)) (defconstant least-positive-double-float (double-from-bits 0 0 1)) #!-long-float (defconstant least-positive-long-float (double-from-bits 0 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