From f5cef96c1e998da7913e563ef58509bc4bb9986d Mon Sep 17 00:00:00 2001 From: hallgren <hallgren> Date: Sun, 12 Jul 1992 20:41:20 +0000 Subject: [PATCH] Fixed mfc1 to add 1 to the fp-reg instead of the i-reg. --- 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 777be8bc2..0c88e5ab8 100644 --- a/compiler/mips/insts.lisp +++ b/compiler/mips/insts.lisp @@ -7,7 +7,7 @@ ;;; 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.41 1992/07/09 16:33:12 hallgren Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/insts.lisp,v 1.42 1992/07/12 20:41:20 hallgren Exp $") ;;; ;;; ********************************************************************** ;;; @@ -621,8 +621,8 @@ (:writes to) (:delay 1) ;; ### Is this delay correct? (:emitter - (emit-register-inst segment cop1-op #b00000 (1+ (reg-tn-encoding to)) - (fp-reg-tn-encoding from) 0 0))) + (emit-register-inst segment cop1-op #b00000 (reg-tn-encoding to) + (1+ (fp-reg-tn-encoding from)) 0 0))) (define-instruction cfc1 (segment reg cr) (:declare (type tn reg) (type (unsigned-byte 5) cr)) -- GitLab