Skip to content
Snippets Groups Projects
Commit eabc38fb authored by wlott's avatar wlott
Browse files

Added target-most-{positive,negative}-fixnum definitions.

parent 56839ddd
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/parms.lisp,v 1.45 1990/05/06 05:25:15 wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.46 1990/05/09 06:40:23 wlott Exp $
;;;
;;; This file contains some parameterizations of various VM
;;; attributes for the MIPS. This file is separate from other stuff so
......@@ -57,6 +57,12 @@
which has the MSB first (RT) or :little-endian which has the MSB last
(VAX).")
(defparameter target-most-positive-fixnum (1- (ash 1 29))
"most-positive-fixnum in the target architecture.")
(defparameter target-most-negative-fixnum (ash -1 29)
"most-negative-fixnum in the target architecture.")
;;; ### This should be somewhere else.
(defconstant native-byte-order :big-endian
"The byte order we are running under.")
......
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