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
7c152660
Commit
7c152660
authored
33 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Fixed a bad declaration in COALESCE-MORE-LTN-NUMBERS. The TN-REFs list can be
null.
parent
df073a64
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/life.lisp
+5
-3
5 additions, 3 deletions
compiler/life.lisp
with
5 additions
and
3 deletions
compiler/life.lisp
+
5
−
3
View file @
7c152660
...
@@ -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/life.lisp,v 1.
19
1991/0
2
/2
0
1
4:58:23
ram Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/life.lisp,v 1.
20
1991/0
8
/2
9
1
8:38:54
ram Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -309,10 +309,12 @@
...
@@ -309,10 +309,12 @@
;;; We don't have to worry about getting the correct conflict kind, since
;;; We don't have to worry about getting the correct conflict kind, since
;;; Init-Global-Conflict-Kind will fix things up.
;;; Init-Global-Conflict-Kind will fix things up.
;;;
;;;
;;; We also set the Local and Local-Number slots in each TN.
;;; We also set the Local and Local-Number slots in each TN. It is
;;; possible that there are no operands in any given call to this function, but
;;; there had better be either some more args or more results.
;;;
;;;
(
defun
coalesce-more-ltn-numbers
(
block
ops
fixed
)
(
defun
coalesce-more-ltn-numbers
(
block
ops
fixed
)
(
declare
(
type
ir2-block
block
)
(
type
tn-ref
ops
)
(
list
fixed
))
(
declare
(
type
ir2-block
block
)
(
type
(
or
tn-ref
null
)
ops
)
(
list
fixed
))
(
let
((
num
(
ir2-block-local-tn-count
block
)))
(
let
((
num
(
ir2-block-local-tn-count
block
)))
(
assert
(
<
num
local-tn-limit
))
(
assert
(
<
num
local-tn-limit
))
(
incf
(
ir2-block-local-tn-count
block
))
(
incf
(
ir2-block-local-tn-count
block
))
...
...
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