Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
8bcb05a8
Commit
8bcb05a8
authored
Nov 13, 1990
by
wlott
Browse files
Supply an :initial-element for calls to make-array.
parent
51a45880
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/backend.lisp
View file @
8bcb05a8
...
...
@@ -110,7 +110,8 @@
;; Translates from SC numbers to SC info structures. SC numbers are always
;; used instead of names at run time, so changing this vector changes all the
;; references.
(
sc-numbers
(
make-array
sc-number-limit
)
:type
sc-vector
)
(
sc-numbers
(
make-array
sc-number-limit
:initial-element
nil
)
:type
sc-vector
)
;; A list of all the SBs defined, so that we can easily iterate over them.
(
sb-list
()
:type
list
)
...
...
@@ -128,7 +129,8 @@
(
meta-sb-names
(
make-hash-table
:test
#'
eq
)
:type
hash-table
)
;; Like *SC-Numbers*, but is updated at meta-compile time.
(
meta-sc-numbers
(
make-array
sc-number-limit
)
:type
sc-vector
)
(
meta-sc-numbers
(
make-array
sc-number-limit
:initial-element
nil
)
:type
sc-vector
)
;; Translates from primitive type names to the corresponding primitive-type
;; structure.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment