From 6d374be2c6c8b1eb84ddb17ecb5ab5a95fed380b Mon Sep 17 00:00:00 2001
From: toy <toy>
Date: Wed, 9 Jul 2003 13:50:41 +0000
Subject: [PATCH] Fix typo in double-float-bits where the wrong offset was used
 to get the hi part of a double from the double-stack.

---
 compiler/sparc/float.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler/sparc/float.lisp b/compiler/sparc/float.lisp
index 11898b67d..55455c125 100644
--- a/compiler/sparc/float.lisp
+++ b/compiler/sparc/float.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/compiler/sparc/float.lisp,v 1.39 2003/07/02 21:45:34 toy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/float.lisp,v 1.40 2003/07/09 13:50:41 toy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1201,7 +1201,7 @@
 	     (* (1+ (tn-offset stack-temp)) vm:word-bytes)))
       (double-stack
        (inst ld hi-bits (current-nfp-tn vop)
-	     (* (tn-offset stack-temp) vm:word-bytes))
+	     (* (tn-offset float) vm:word-bytes))
        (inst ld lo-bits (current-nfp-tn vop)
 	     (* (1+ (tn-offset float)) vm:word-bytes)))
       (descriptor-reg
-- 
GitLab