0.7.2.8:
[sbcl.git] / src / compiler / sparc / parms.lisp
index 7bee941..bfa49e2 100644 (file)
   #!+sb-doc
   "Number of bytes in a word.")
 
-;;; FIXME: The following three should probably be rationalized or at
-;;; least prefixed with n- where applicable
-(defconstant fixnum-tag-bits (1- n-lowtag-bits)
+(defconstant n-fixnum-tag-bits (1- n-lowtag-bits)
   #!+sb-doc
   "Number of tag bits used for a fixnum")
 
-(defconstant fixnum-tag-mask (1- (ash 1 fixnum-tag-bits))
+(defconstant fixnum-tag-mask (1- (ash 1 n-fixnum-tag-bits))
   #!+sb-doc
   "Mask to get the fixnum tag")
 
-(defconstant positive-fixnum-bits (- n-word-bits fixnum-tag-bits 1)
+(defconstant n-positive-fixnum-bits (- n-word-bits n-fixnum-tag-bits 1)
   #!+sb-doc
   "Maximum number of bits in a positive fixnum")