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
0d29b64d
Commit
0d29b64d
authored
32 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Actually define a funcallable-instance primitive-type.
parent
78a65a9f
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/generic/primtype.lisp
+5
-3
5 additions, 3 deletions
compiler/generic/primtype.lisp
with
5 additions
and
3 deletions
compiler/generic/primtype.lisp
+
5
−
3
View file @
0d29b64d
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/primtype.lisp,v 1.1
0
1993/03/13
17:09:28
ram Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/primtype.lisp,v 1.1
1
1993/03/13
20:22:52
ram Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -60,6 +60,8 @@
(
def-primitive-type
list
(
descriptor-reg
))
(
def-primitive-type
instance
(
descriptor-reg
))
(
def-primitive-type
funcallable-instance
(
descriptor-reg
))
;;; Primitive other-pointer number types.
;;;
(
def-primitive-type
bignum
(
descriptor-reg
))
...
...
@@ -244,8 +246,8 @@
((
nil
)
(
values
*any-primitive-type*
nil
))))
(
built-in-class
(
case
(
class-name
type
)
((
complex
function
funcallable-instance
instance
system-area-pointer
weak-pointer
)
((
complex
function
instance
funcallable-instance
system-area-pointer
weak-pointer
)
(
values
(
primitive-type-or-lose
(
class-name
type
)
*backend*
)
t
))
(
base-char
(
exactly
base-char
))
...
...
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