Skip to content
Snippets Groups Projects
Commit 447bdd8a authored by gerd's avatar gerd
Browse files

(funcall (compile nil '(lambda ()

	   (declare (optimize (safety 3) (speed 0) (debug 0)))
	   (ash 6916244 (min 42 -185236061640)))))
	 => -185236061640 is not a (or fixnum null)

	* src/compiler/generic/vm-type.lisp (ash-index): Is integer,
	not fixnum.
parent e3c48cee
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-type.lisp,v 1.42 2003/03/22 16:15:18 gerd Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-type.lisp,v 1.43 2003/10/13 11:24:14 gerd Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
(deftype bit-index () `(integer 0 ,most-positive-fixnum)) (deftype bit-index () `(integer 0 ,most-positive-fixnum))
;;; ;;;
;;; Offset argument to Ash (a signed bit index). ;;; Offset argument to Ash (a signed bit index).
(deftype ash-index () 'fixnum) (deftype ash-index () 'integer)
;;; ;;;
;;; A lexical environment for macroexpansion. ;;; A lexical environment for macroexpansion.
(deftype lexical-environment () 'c::lexenv) (deftype lexical-environment () 'c::lexenv)
......
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