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

Oops. Need to move %DOUBLE-DOUBLE-FLOAT from compiler/float-tran.lisp

to code/float.lisp because we need this early in the build process to
handle float types.

This might cuase problems with bootstrapping double-double floats!
parent 9c80670d
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/float.lisp,v 1.42 2008/10/24 21:45:00 rtoy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/float.lisp,v 1.43 2008/12/22 23:24:28 rtoy Rel $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -1007,6 +1007,25 @@ ...@@ -1007,6 +1007,25 @@
#+(and nil double-double) #+(and nil double-double)
(frob %double-double-float double-double-float)) (frob %double-double-float double-double-float))
;; Note: There might be bootstrap issues when adding double-double
;; floats. Use the above definition if that's the case.
#+double-double
(defun %double-double-float (n)
(typecase n
(fixnum
(%make-double-double-float (float n 1d0) 0d0))
(single-float
(%make-double-double-float (float n 1d0) 0d0))
(double-float
(%make-double-double-float (float n 1d0) 0d0))
(double-double-float
n)
(bignum
(bignum:bignum-to-float n 'double-double-float))
(ratio
(kernel::float-ratio n 'double-double-float))))
;; Convert rational to double-double-float. The core algorithm is ;; Convert rational to double-double-float. The core algorithm is
;; from Richard Fateman. It was slightly modified to handle rationals ;; from Richard Fateman. It was slightly modified to handle rationals
;; instead of just bignums. ;; instead of just bignums.
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/float-tran.lisp,v 1.126 2008/11/16 14:23:33 rtoy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/float-tran.lisp,v 1.127 2008/12/22 23:24:28 rtoy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -59,6 +59,9 @@ ...@@ -59,6 +59,9 @@
(defun %double-double-float (n) (defun %double-double-float (n)
(make-double-double-float (float n 1d0) 0d0)) (make-double-double-float (float n 1d0) 0d0))
;; Moved to code/float.lisp, because we need this relatively early in
;; the build process to handle float and real types.
#+nil
(defun %double-double-float (n) (defun %double-double-float (n)
(typecase n (typecase n
(fixnum (fixnum
......
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