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
3bee9b2f
Commit
3bee9b2f
authored
Feb 25, 1991
by
ram
Browse files
Fixed TN-OVERLAPS in LOAD-TN-OFFSET-CONFLICTS-IN-SB to make the upper bound
exclusive so that we don't spuriously reject locations.
parent
a7a36e27
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/pack.lisp
View file @
3bee9b2f
...
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/pack.lisp,v 1.3
1
1991/02/2
4
1
9:59
:1
4
ram Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/pack.lisp,v 1.3
2
1991/02/2
5
1
8:12
:1
6
ram Exp $"
)
;;;
;;; **********************************************************************
;;;
...
...
@@ -1008,10 +1008,10 @@
(
let
((
sc
(
tn-sc
tn
))
(
tn-offset
(
tn-offset
tn
)))
(
and
(
eq
(
sc-sb
sc
)
sb
)
(
<=
tn-offset
offset
(
the
index
(
+
tn-offset
(
sc-element-size
sc
)))))))
(
<=
tn-offset
offset
)
(
<
offset
(
the
index
(
+
tn-offset
(
sc-element-size
sc
)))))))
(
same
(
ref
)
(
let
((
tn
(
tn-ref-tn
ref
))
(
ltn
(
tn-ref-load-tn
ref
)))
...
...
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