From 3c2c150a5b1f2d178677c7c3e8ac3541debe2372 Mon Sep 17 00:00:00 2001
From: dtc <dtc>
Date: Fri, 20 Feb 1998 07:44:10 +0000
Subject: [PATCH] For the x86 the default alignment of alien double-floats
 should be 32 bits but was 64 bits.

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

diff --git a/code/alieneval.lisp b/code/alieneval.lisp
index 694b2a045..61f1744b9 100644
--- a/code/alieneval.lisp
+++ b/code/alieneval.lisp
@@ -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/alieneval.lisp,v 1.44 1998/02/08 16:20:59 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/alieneval.lisp,v 1.45 1998/02/20 07:44:10 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -126,7 +126,7 @@
 
 (defun guess-alignment (bits)
   (cond ((null bits) nil)
-	((> bits 32) 64)
+	#-x86 ((> bits 32) 64)
 	((> bits 16) 32)
 	((> bits 8) 16)
 	((> bits 1) 8)
-- 
GitLab