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

Changed the hack in fixnum that was supposed to get around bignum lossage.

parent c6c1f997
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; Scott Fahlman (FAHLMAN@CMUC).
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.55 1990/06/06 20:53:54 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.56 1990/06/23 05:39:59 wlott Exp $
;;; ;;;
;;; This file contains some parameterizations of various VM ;;; This file contains some parameterizations of various VM
;;; attributes for the MIPS. This file is separate from other stuff so ;;; attributes for the MIPS. This file is separate from other stuff so
...@@ -541,7 +541,7 @@ ...@@ -541,7 +541,7 @@
"Make a fixnum out of NUM. (i.e. shift by two bits if it will fit.)" "Make a fixnum out of NUM. (i.e. shift by two bits if it will fit.)"
(if (<= #x-20000000 num #x1fffffff) (if (<= #x-20000000 num #x1fffffff)
#+new-compiler (ash num 2) #+new-compiler (ash num 2)
#-new-compiler (* num 4) #-new-compiler (if (minusp num) (- (ash (- num) 2)) (ash num 2))
(error "~D is too big for a fixnum." num))) (error "~D is too big for a fixnum." num)))
......
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