From 90989f3da6c5acfced79d0725bc48764c89eae12 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Mon, 24 Feb 1992 01:43:41 +0000
Subject: [PATCH] Added sizes for single-float and double-float.

---
 code/alieneval.lisp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/code/alieneval.lisp b/code/alieneval.lisp
index 6fab6fdd2..4e422432f 100644
--- a/code/alieneval.lisp
+++ b/code/alieneval.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/alieneval.lisp,v 1.17 1992/02/22 02:54:51 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/alieneval.lisp,v 1.18 1992/02/24 01:43:41 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -739,7 +739,7 @@
   value)
 
 
-(def-alien-type-class (single-float :include float))
+(def-alien-type-class (single-float :include (float (:bits 32))))
 
 (def-alien-type-translator single-float ()
   (make-alien-single-float-type :type 'single-float))
@@ -749,7 +749,7 @@
   `(sap-ref-single ,sap (/ ,offset vm:byte-bits)))
 
 
-(def-alien-type-class (double-float :include float))
+(def-alien-type-class (double-float :include (float (:bits 64))))
 
 (def-alien-type-translator double-float ()
   (make-alien-double-float-type :type 'double-float))
-- 
GitLab