Skip to content
Snippets Groups Projects
Commit 7dc46334 authored by ram's avatar ram
Browse files

Change ENTRY-INFO to allow function type and args to be omitted.

parent ed8e32ed
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/vop.lisp,v 1.27 1991/02/20 15:00:22 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/vop.lisp,v 1.28 1991/05/15 19:41:41 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -393,11 +393,11 @@ ...@@ -393,11 +393,11 @@
;; ;;
;; A string representing the argument list that the function was defined ;; A string representing the argument list that the function was defined
;; with. ;; with.
(arguments "<not computed>" :type simple-string) (arguments nil :type (or simple-string null))
;; ;;
;; A function type specifier representing the arguments and results of this ;; A function type specifier representing the arguments and results of this
;; function. ;; function.
(type nil :type (or list (member function)))) (type 'function :type (or list (member function))))
;;; The IR2-Environment is used to annotate non-let lambdas with their passing ;;; The IR2-Environment is used to annotate non-let lambdas with their passing
......
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