From 192a6282019577d1a12321c04bb0260e578707ff Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Fri, 1 Feb 1991 21:51:55 +0000
Subject: [PATCH] MOVE-{TO,FROM}-WORD/FIXNUM allow DESCRIPTOR-REG in their
 DEFINE-MOVE-VOP so that we can use these VOPs when moving into locations of
 type T when the value is known to be a FIXNUM.

---
 compiler/mips/move.lisp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/compiler/mips/move.lisp b/compiler/mips/move.lisp
index ea6eceac9..c32854dbc 100644
--- a/compiler/mips/move.lisp
+++ b/compiler/mips/move.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/move.lisp,v 1.25 1990/11/11 00:17:26 ram Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/move.lisp,v 1.26 1991/02/01 21:51:55 ram Exp $
 ;;;
 ;;;    This file contains the MIPS VM definition of operand loading/saving and
 ;;; the Move VOP.
@@ -157,7 +157,7 @@
     (inst sra y x 2)))
 ;;;
 (define-move-vop move-to-word/fixnum :move
-  (any-reg) (signed-reg unsigned-reg))
+  (any-reg descriptor-reg) (signed-reg unsigned-reg))
 
 ;;; Arg is a non-immediate constant, load it.
 (define-vop (move-to-word-c)
@@ -201,7 +201,7 @@
     (inst sll y x 2)))
 ;;;
 (define-move-vop move-from-word/fixnum :move
-  (signed-reg unsigned-reg) (any-reg))
+  (signed-reg unsigned-reg) (any-reg descriptor-reg))
 
 ;;; Result may be a bignum, so we have to check.  Use a worst-case cost to make
 ;;; sure people know they may be number consing.
-- 
GitLab