From c93b3e4ba380adce7a2cff1b7e4d34c4371ea38c Mon Sep 17 00:00:00 2001
From: dtc <dtc>
Date: Tue, 10 Mar 1998 18:21:27 +0000
Subject: [PATCH] Fix a typo in the complex single float move-argument VOP.

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

diff --git a/compiler/alpha/float.lisp b/compiler/alpha/float.lisp
index 5bcc3f6be..3449ab982 100644
--- a/compiler/alpha/float.lisp
+++ b/compiler/alpha/float.lisp
@@ -6,7 +6,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/alpha/float.lisp,v 1.9 1998/03/04 16:41:55 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/alpha/float.lisp,v 1.10 1998/03/10 18:21:27 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -337,7 +337,7 @@
 	 (let ((real-tn (complex-single-reg-real-tn x)))
 	   (inst sts real-tn offset nfp))
 	 (let ((imag-tn (complex-single-reg-imag-tn x)))
-	   (inst sts imag-tn (+ offset world-bytes) nfp)))))))
+	   (inst sts imag-tn (+ offset word-bytes) nfp)))))))
 (define-move-vop move-complex-single-float-argument :move-argument
   (complex-single-reg descriptor-reg) (complex-single-reg))
 
-- 
GitLab