Skip to content
Snippets Groups Projects
Commit 8a37f80c authored by gerd's avatar gerd
Browse files

* src/compiler/ir1tran.lisp (the) <IR1 translator>: The spec

	&rest nil means a fixed number of values.
parent 2e8488e0
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/ir1tran.lisp,v 1.150 2003/05/08 14:52:03 gerd Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1tran.lisp,v 1.151 2003/05/08 15:00:58 gerd Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -3020,7 +3020,13 @@ ...@@ -3020,7 +3020,13 @@
(make-values-type (make-values-type
:required (mapcar #'or-null (values-type-required ctype)) :required (mapcar #'or-null (values-type-required ctype))
:optional (values-type-optional ctype) :optional (values-type-optional ctype)
:rest (or (values-type-rest ctype) *universal-type*))))) :rest (let ((rest (values-type-rest ctype)))
(cond ((null rest)
*universal-type*)
((eq rest (specifier-type nil))
nil)
(t
rest)))))))
((csubtypep (specifier-type 'null) ctype) ((csubtypep (specifier-type 'null) ctype)
(setq ctype (make-values-type :optional (list ctype) (setq ctype (make-values-type :optional (list ctype)
:rest *universal-type*))) :rest *universal-type*)))
......
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