From 3a2376ea8a5f4964e585101ad9fa02874fffc48f Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Tue, 24 Mar 1992 04:24:23 +0000 Subject: [PATCH] Fixed another stupid bug in make-array-header. --- compiler/sparc/array.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/sparc/array.lisp b/compiler/sparc/array.lisp index 3ebbd8c1b..8edfaebd3 100644 --- a/compiler/sparc/array.lisp +++ b/compiler/sparc/array.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/array.lisp,v 1.8 1992/03/23 00:19:00 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/array.lisp,v 1.9 1992/03/24 04:24:23 wlott Exp $ ;;; ;;; This file contains the SPARC definitions for array operations. ;;; @@ -31,7 +31,7 @@ (pseudo-atomic () (inst or header alloc-tn other-pointer-type) (inst add ndescr rank (* (1+ array-dimensions-offset) vm:word-bytes)) - (inst andn ndescr rank 4) + (inst andn ndescr 4) (inst add alloc-tn ndescr) (inst add ndescr rank (fixnum (1- vm:array-dimensions-offset))) (inst sll ndescr ndescr vm:type-bits) -- GitLab