Skip to content
Snippets Groups Projects
Commit 38fc36f2 authored by ram's avatar ram
Browse files

Made DYNAMIC-EXTENT declaration recognized & ignored.

parent 515be137
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1tran.lisp,v 1.87 1993/05/02 14:54:31 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1tran.lisp,v 1.88 1993/06/24 14:04:52 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
(export '(truly-the maybe-inline *derive-function-types*)) (export '(truly-the maybe-inline *derive-function-types*))
(in-package "LISP") (in-package "LISP")
(export '(ignorable symbol-macrolet)) (export '(ignorable dynamic-extent symbol-macrolet))
(in-package "KERNEL") (in-package "KERNEL")
(export '(lambda-with-environment instance-lambda)) (export '(lambda-with-environment instance-lambda))
...@@ -1144,6 +1144,9 @@ ...@@ -1144,6 +1144,9 @@
(car types) (car types)
`(values ,@types)) `(values ,@types))
cont res 'values)))) cont res 'values))))
(dynamic-extent
(when (policy nil (> speed brevity))
(compiler-note "DYNAMIC-EXTENT declaration not implemented.")))
(t (t
(let ((what (first spec))) (let ((what (first spec)))
(cond ((member what type-specifier-symbols) (cond ((member what type-specifier-symbols)
......
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