From 4c964a5cbc3f54412ae9ef26c35b3d6426a5503d Mon Sep 17 00:00:00 2001
From: dtc <dtc>
Date: Wed, 21 Jan 1998 10:10:06 +0000
Subject: [PATCH] Few fixes to the sparc complex-float support.

---
 compiler/sparc/float.lisp | 4 ++--
 compiler/sparc/vm.lisp    | 9 +++++----
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/compiler/sparc/float.lisp b/compiler/sparc/float.lisp
index 5ed09c803..6981e33cf 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.13 1998/01/21 05:10:19 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/float.lisp,v 1.14 1998/01/21 10:10:06 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -142,7 +142,7 @@
 		  :offset (tn-offset x)))
 (defun complex-double-reg-imag-tn (x)
   (make-random-tn :kind :normal :sc (sc-or-lose 'double-reg *backend*)
-		  :offset (1+ (tn-offset x))))
+		  :offset (+ (tn-offset x) 2)))
 
 
 (define-move-function (load-complex-single 2) (vop x y)
diff --git a/compiler/sparc/vm.lisp b/compiler/sparc/vm.lisp
index 8b9e47c91..bd7c965c0 100644
--- a/compiler/sparc/vm.lisp
+++ b/compiler/sparc/vm.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/vm.lisp,v 1.8 1998/01/21 05:10:17 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/vm.lisp,v 1.9 1998/01/21 10:10:05 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -149,10 +149,11 @@
   (double-stack non-descriptor-stack
 		:element-size 2 :alignment 2) ; double floats.
   #+complex-float
-  (complex-single-stack stack :element-size 2)	; complex-single-floats
+  ;; complex-single-floats
+  (complex-single-stack non-descriptor-stack :element-size 2)
   #+complex-float
-  (complex-double-stack stack
-			:element-size 4 :alignment 2) ; complex-double-floats.
+  ;; complex-double-floats.
+  (complex-double-stack non-descriptor-stack :element-size 4 :alignment 2)
 
 
   ;; **** Things that can go in the integer registers.
-- 
GitLab