From c042627ceda2a97a852763e344072b7e093db122 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Thu, 4 Feb 1993 14:37:46 +0000
Subject: [PATCH] Fixed make-array-header to not seg fault.

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

diff --git a/compiler/mips/array.lisp b/compiler/mips/array.lisp
index ad9f1dfb0..8e0e98fac 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.38 1993/01/27 10:03:27 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/array.lisp,v 1.39 1993/02/04 14:37:46 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -42,7 +42,7 @@
     (inst srl header 2)
     (pseudo-atomic (pa-flag)
       (inst or result alloc-tn other-pointer-type)
-      (storew header alloc-tn)
+      (storew header result 0 other-pointer-type)
       (inst addu alloc-tn bytes))))
 
 #+gengc
-- 
GitLab