From a264fb6947d825a3aa272206750bf58652430063 Mon Sep 17 00:00:00 2001
From: emarsden <emarsden>
Date: Mon, 21 Jul 2003 12:57:19 +0000
Subject: [PATCH] Correct argument order in the depths of DATA-VECTOR-SET-C/
 (DEF-SMALL-DATA-VECTOR-FROBS) for Alpha backend. This bug is triggered by
 operations on bit arrays.

From Daniel Barlow via SBCL.
---
 compiler/alpha/array.lisp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/compiler/alpha/array.lisp b/compiler/alpha/array.lisp
index a53ba10c6..1c24ed3f0 100644
--- a/compiler/alpha/array.lisp
+++ b/compiler/alpha/array.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/alpha/array.lisp,v 1.8 1998/07/24 17:22:29 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/alpha/array.lisp,v 1.9 2003/07/21 12:57:19 emarsden Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -281,10 +281,10 @@
 	 (:temporary (:scs (non-descriptor-reg)) temp old)
 	 (:generator 20
 	   (multiple-value-bind (word extra) (floor index ,elements-per-word)
-	     (inst ldl object
+	     (inst ldl old
 		   (- (* (+ word vector-data-offset) word-bytes)
 		      other-pointer-type)
-		    old)
+		    object)
 	     (unless (and (sc-is value immediate)
 			  (= (tn-value value) ,(1- (ash 1 bits))))
 	       (cond ((= extra ,(1- elements-per-word))
-- 
GitLab