Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
7dc46334
Commit
7dc46334
authored
33 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compiler/vop.lisp
+3
-3
3 additions, 3 deletions
compiler/vop.lisp
with
3 additions
and
3 deletions
compiler/vop.lisp
+
3
−
3
View file @
7dc46334
...
@@ -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.2
7
1991/0
2/20 15:00:22
ram Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/vop.lisp,v 1.2
8
1991/0
5/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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment