From bafcc64308e470ae73a0033b838d9e0821b83d79 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Fri, 24 May 1991 19:41:42 +0000 Subject: [PATCH] Spec the cost of word, short, and byte to be 0. --- compiler/mips/insts.lisp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/compiler/mips/insts.lisp b/compiler/mips/insts.lisp index 9b9bb3810..f7b46807b 100644 --- a/compiler/mips/insts.lisp +++ b/compiler/mips/insts.lisp @@ -7,11 +7,11 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/insts.lisp,v 1.30 1991/02/20 15:14:41 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/insts.lisp,v 1.31 1991/05/24 19:41:42 wlott Exp $") ;;; ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/insts.lisp,v 1.30 1991/02/20 15:14:41 ram Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/insts.lisp,v 1.31 1991/05/24 19:41:42 wlott Exp $ ;;; ;;; Description of the MIPS architecture. ;;; @@ -667,17 +667,17 @@ (define-format (word-format 32 :pinned t) (data (byte 32 0))) -(define-instruction (word) +(define-instruction (word :cost 0) (word-format (data :argument (or (unsigned-byte 32) (signed-byte 32))))) (define-format (short-format 16 :pinned t) (data (byte 16 0))) -(define-instruction (short) +(define-instruction (short :cost 0) (short-format (data :argument (or (unsigned-byte 16) (signed-byte 16))))) (define-format (byte-format 8 :pinned t) (data (byte 8 0))) -(define-instruction (byte) +(define-instruction (byte :cost 0) (byte-format (data :argument (or (unsigned-byte 8) (signed-byte 8))))) -- GitLab