From: Paul Khuong Date: Mon, 20 May 2013 03:27:26 +0000 (-0400) Subject: Declare the argument type for float-radix X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=825bbf4381c95fba0e6de0f662f5fe61f77160a1;p=sbcl.git Declare the argument type for float-radix Otherwise, inlined copies sometimes skip the type check. --- diff --git a/src/code/float.lisp b/src/code/float.lisp index 5c53e87..a3a0114 100644 --- a/src/code/float.lisp +++ b/src/code/float.lisp @@ -170,7 +170,7 @@ (defun float-radix (x) #!+sb-doc "Return (as an integer) the radix b of its floating-point argument." - (declare (ignore x)) + (declare (ignore x) (type float x)) 2) ;;;; INTEGER-DECODE-FLOAT and DECODE-FLOAT