Skip to content
Snippets Groups Projects
Commit b74078b5 authored by rtoy's avatar rtoy
Browse files

Include the bounds for double-double-float when we specify bounds for

a FLOAT type.  (We were silently dropping the bounds before.)
parent 1b8f6914
No related branches found
No related tags found
No related merge requests found
......@@ -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/type.lisp,v 1.72 2006/06/30 18:41:22 rtoy Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/type.lisp,v 1.73 2006/07/07 14:04:01 rtoy Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -2415,8 +2415,9 @@
(double-float ,(coerced-float-bound low 'double-float)
,(coerced-float-bound high 'double-float))
#+long-float ,(error "stub: no long float support yet")
;; This needs to be fixed so that we can compute the bounds
#+double-double (double-double-float * *))))
#+double-double
(double-double-float ,(coerced-float-bound low 'double-double-float)
,(coerced-float-bound high 'double-double-float)))))
(defmacro define-float-format (f)
`(def-bounded-type ,f float ,f))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment