From a756327760906e702777b24d6127add79c65369f Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Fri, 27 Apr 1990 19:21:45 +0000 Subject: [PATCH] Make the short and byte instructions use the short and byte formats instead of the word format. --- compiler/mips/insts.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/mips/insts.lisp b/compiler/mips/insts.lisp index 463aac003..f5969ccfe 100644 --- a/compiler/mips/insts.lisp +++ b/compiler/mips/insts.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/insts.lisp,v 1.14 1990/04/26 20:13:41 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/insts.lisp,v 1.15 1990/04/27 19:21:45 wlott Exp $ ;;; ;;; Description of the MIPS architecture. ;;; @@ -459,12 +459,12 @@ (define-format (short-format 16) (data (byte 16 0))) (define-instruction (short) - (word-format (data :argument (or (unsigned-byte 16) (signed-byte 16))))) + (short-format (data :argument (or (unsigned-byte 16) (signed-byte 16))))) (define-format (byte-format 8) (data (byte 8 0))) (define-instruction (byte) - (word-format (data :argument (or (unsigned-byte 8) (signed-byte 8))))) + (byte-format (data :argument (or (unsigned-byte 8) (signed-byte 8))))) -- GitLab