From 537edb52d333788555f9174224d8092635b6a9ee Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Mon, 5 Feb 1990 13:06:27 +0000 Subject: [PATCH] Fixed LOAD-CONSTANT-TN to load fixnums correctly. --- compiler/mips/move.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/mips/move.lisp b/compiler/mips/move.lisp index d783f750f..fce1f9f25 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.2 1990/02/03 17:09:09 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/move.lisp,v 1.3 1990/02/05 13:06:27 wlott Exp $ ;;; ;;; This file contains the RT VM definition of operand loading/saving and ;;; the Move VOP. @@ -35,7 +35,7 @@ temp)))) (etypecase val (integer - (loadi dest val)) + (loadi dest (fixnum val))) (null (move dest null-tn)) ((member t) -- GitLab