From 0d7cf4fd12f0074d2afda49eadae34de179504fc Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Mon, 25 Jun 1990 23:00:08 +0000
Subject: [PATCH] Fixed syntax in the ODD-FP-REG argument type definition.

---
 compiler/mips/insts.lisp | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/compiler/mips/insts.lisp b/compiler/mips/insts.lisp
index df1d3fad3..7e4decf7d 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)))
-- 
GitLab