diff --git a/compiler/mips/insts.lisp b/compiler/mips/insts.lisp index df1d3fad3a42961b6d5be3d2a34dede92f724510..7e4decf7d0e7388a2ffb06ff0522fbe7722fef4b 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.19 1990/06/25 21:12:06 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/insts.lisp,v 1.20 1990/06/25 23:00:08 ram Exp $ ;;; ;;; Description of the MIPS architecture. ;;; @@ -112,7 +112,8 @@ (define-argument-type odd-fp-reg :type (satisfies fp-reg-p) - :function (1+ tn-offset)) + :function (lambda (tn) + (1+ (tn-offset tn)))) (defun label-offset (label) (1- (ash (- (label-position label) *current-position*) -2)))