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
e0ad88f6
Commit
e0ad88f6
authored
32 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Updated comment for IR2-CONTINUATION-PRIMITIVE-TYPE.
parent
f83c27b3
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
+8
-3
8 additions, 3 deletions
compiler/vop.lisp
with
8 additions
and
3 deletions
compiler/vop.lisp
+
8
−
3
View file @
e0ad88f6
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/vop.lisp,v 1.3
3
1992/0
4/21 04:15:26 wlott
Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/vop.lisp,v 1.3
4
1992/0
6/02 19:13:11 ram
Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -253,13 +253,18 @@
;; The primitive-type of the first value of this continuation. This is
;; primarily for internal use during LTN, but it also records the type
;; restriction on delayed references. In multiple-value contexts, this is
;; null to indicate that it is meaningless.
;; null to indicate that it is meaningless. This is always (primitive-type
;; (continuation-type cont)), which may be more restrictive than the
;; tn-primitive-type of the value TN. This is becase the value TN must hold
;; any possible type that could be computed (before type checking.)
(
primitive-type
nil
:type
(
or
primitive-type
null
))
;;
;; Locations used to hold the values of the continuation. If the number
;; of values if fixed, then there is one TN per value. If the number of
;; values is unknown, then this is a two-list of TNs holding the start of the
;; values glob and the number of values.
;; values glob and the number of values. Note that since type checking is
;; the responsibility of the values receiver, these TNs primitive type is
;; only based on the proven type information.
(
locs
nil
:type
list
))
(
defprinter
ir2-continuation
...
...
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