Skip to content
Snippets Groups Projects
Commit 723f9331 authored by gerd's avatar gerd
Browse files

* src/code/byte-interp.lisp (byte-interpret-byte): Declare

	optimize speed 3 safety 0.
parent 7c2d1c7c
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/byte-interp.lisp,v 1.41 2003/08/27 14:01:56 gerd Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/byte-interp.lisp,v 1.42 2003/08/27 14:38:35 gerd Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -1026,7 +1026,8 @@
(declare (type code-component component)
(type pc pc)
(type stack-pointer fp)
(type (unsigned-byte 8) byte))
(type (unsigned-byte 8) byte)
(optimize (speed 3) (safety 0)))
#+nil
(locally (declare (optimize (inhibit-warnings 3)))
(when *byte-trace*
......
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