From 0ce3c62d1edaac37c742ae18965fda9cac57999b Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Mon, 16 Jul 1990 17:40:10 +0000 Subject: [PATCH] Use the symbol-value of the header when generating alloc-vops instead of assuming the header has already been evaluated. --- compiler/mips/alloc.lisp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/compiler/mips/alloc.lisp b/compiler/mips/alloc.lisp index 397374971..03c842e76 100644 --- a/compiler/mips/alloc.lisp +++ b/compiler/mips/alloc.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/alloc.lisp,v 1.9 1990/07/02 04:47:03 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/alloc.lisp,v 1.10 1990/07/16 17:40:10 wlott Exp $ ;;; ;;; Allocation VOPs for the MIPS port. ;;; @@ -202,9 +202,7 @@ (vm:pad-data-block ,size)) (inst li temp ,(logior (ash (1- size) vm:type-bits) - (if (integerp header) - header - 0))) + (symbol-value header))) (storew temp result 0 ,lowtag))) (t `((inst addu alloc-tn alloc-tn -- GitLab