Skip to content
Snippets Groups Projects
Commit 0d7cf4fd authored by ram's avatar ram
Browse files

Fixed syntax in the ODD-FP-REG argument type definition.

parent d84f2279
No related branches found
No related tags found
No related merge requests found
......@@ -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)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment