From 3e67d1fbdad658285d56da3b307ee2fd0d569e37 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Tue, 13 Feb 1990 17:03:18 +0000 Subject: [PATCH] Fixed COMPONENT-HEADER-LENGTH to round the size of the component header up so that the code vector will be dual-word aligned. --- compiler/mips/insts.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/mips/insts.lisp b/compiler/mips/insts.lisp index d263173b0..066d0c4fa 100644 --- a/compiler/mips/insts.lisp +++ b/compiler/mips/insts.lisp @@ -7,7 +7,7 @@ ;;; contact Scott Fahlman (Scott.Fahlman@CS.CMU.EDU). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/insts.lisp,v 1.6 1990/02/09 21:11:05 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/insts.lisp,v 1.7 1990/02/13 17:03:18 wlott Exp $ ;;; ;;; Assembler instruction definitions for the MIPS R2000. ;;; @@ -343,7 +343,7 @@ (let* ((2comp (component-info component)) (constants (ir2-component-constants 2comp)) (num-consts (length constants))) - (ash num-consts word-shift))) + (ash (logandc2 (1+ num-consts) 1) word-shift))) ;;; COMPUTE-CODE-FROM-FN -- GitLab