Skip to content
Snippets Groups Projects
Commit 3bee9b2f authored by ram's avatar 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
No related branches found
No related tags found
No related merge requests found
...@@ -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/pack.lisp,v 1.31 1991/02/24 19:59:14 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/pack.lisp,v 1.32 1991/02/25 18:12:16 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -1008,10 +1008,10 @@ ...@@ -1008,10 +1008,10 @@
(let ((sc (tn-sc tn)) (let ((sc (tn-sc tn))
(tn-offset (tn-offset tn))) (tn-offset (tn-offset tn)))
(and (eq (sc-sb sc) sb) (and (eq (sc-sb sc) sb)
(<= tn-offset (<= tn-offset offset)
offset (< offset
(the index (the index
(+ tn-offset (sc-element-size sc))))))) (+ tn-offset (sc-element-size sc)))))))
(same (ref) (same (ref)
(let ((tn (tn-ref-tn ref)) (let ((tn (tn-ref-tn ref))
(ltn (tn-ref-load-tn ref))) (ltn (tn-ref-load-tn ref)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment