From 6757e6d103739067c4501da72038a21b84133156 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Tue, 25 May 1993 19:07:19 +0000 Subject: [PATCH] Fixed the gengc make-array-header to correctly compute the header word. --- compiler/mips/array.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/compiler/mips/array.lisp b/compiler/mips/array.lisp index a5ad468aa..d1034be78 100644 --- a/compiler/mips/array.lisp +++ b/compiler/mips/array.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/array.lisp,v 1.40 1993/02/26 08:48:55 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/array.lisp,v 1.41 1993/05/25 19:07:19 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -61,8 +61,9 @@ (:generator 13 (inst addu a0 rank (fixnum (1+ array-dimensions-offset))) (inst addu nl1 rank (fixnum (1- array-dimensions-offset))) - (inst sll nl1 (- type-bits 2)) + (inst sll nl1 type-bits) (inst or nl1 type) + (inst srl nl1 2) (inst jal (make-fixup 'var-alloc :assembly-routine)) (inst li nl0 other-pointer-type) (move result a0))) -- GitLab