From 4f6c568e507980936d96227fb9b57766dd7ca46c Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Mon, 26 Feb 1990 23:45:28 +0000 Subject: [PATCH] Changed compute-<foo>-from-<bar> instructions to use unsigned math instead of signed math. --- compiler/mips/insts.lisp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler/mips/insts.lisp b/compiler/mips/insts.lisp index dff730e59..444bc2b90 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.9 1990/02/24 17:09:04 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/insts.lisp,v 1.10 1990/02/26 23:45:28 wlott Exp $ ;;; ;;; Assembler instruction definitions for the MIPS R2000. ;;; @@ -362,7 +362,7 @@ (component-header-length))))) (def-instruction compute-code-from-fn compute-code-from-fn-format - :op #b001000) + :op #b001001) ;;; COMPUTE-CODE-FROM-LRA @@ -379,7 +379,7 @@ (- (+ label-offset (component-header-length)))))) (def-instruction compute-code-from-lra compute-code-from-lra-format - :op #b001000) + :op #b001001) ;;; COMPUTE-LRA-FROM-CODE @@ -396,7 +396,7 @@ (+ label-offset (component-header-length))))) (def-instruction compute-lra-from-code compute-lra-from-code-format - :op #b001000) + :op #b001001) ;;; -- GitLab