From 17a390734289b8cbf98ae0a585e96cae9f353165 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Sat, 13 Oct 1990 20:23:09 +0000 Subject: [PATCH] Added *fixup-values* parameter. --- compiler/mips/parms.lisp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/compiler/mips/parms.lisp b/compiler/mips/parms.lisp index 3bb35bcfa..663bfb2ac 100644 --- a/compiler/mips/parms.lisp +++ b/compiler/mips/parms.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.76 1990/10/13 16:16:05 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.77 1990/10/13 20:23:09 wlott Exp $ ;;; ;;; This file contains some parameterizations of various VM ;;; attributes for the MIPS. This file is separate from other stuff so @@ -23,7 +23,7 @@ (export '(float-underflow-trap-bit float-overflow-trap-bit float-imprecise-trap-bit float-invalid-trap-bit float-divide-by-zero-trap-bit single-float-trapping-nan-bit - double-float-trapping-nan-bit)) + double-float-trapping-nan-bit *fixup-values*)) ;(eval-when (compile load eval) @@ -633,6 +633,10 @@ ;;; (defparameter *assembly-unit-length* 8) +(defparameter *fixup-values* + '((:jump . 0) (:lui . 1) (:addi . 2))) + + ;;;; Other parameters: -- GitLab