Skip to content
Snippets Groups Projects
Commit a7a36e27 authored by ram's avatar ram
Browse files

Fixed some loop syntax and typos and stuff.

parent 82ce1260
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.30 1991/02/24 16:20:00 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/pack.lisp,v 1.31 1991/02/24 19:59:14 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -1047,8 +1047,8 @@ ...@@ -1047,8 +1047,8 @@
(size (finite-sb-current-size sb))) (size (finite-sb-current-size sb)))
(loop for i from offset (loop for i from offset
repeat (sc-element-size sc) repeat (sc-element-size sc)
any (or (>= i size) thereis (or (>= i size)
(load-tn-offset-conflicts-in-sb op i))))) (load-tn-offset-conflicts-in-sb op sb i)))))
;;; Find-Load-TN-Target -- Internal ;;; Find-Load-TN-Target -- Internal
...@@ -1079,7 +1079,7 @@ ...@@ -1079,7 +1079,7 @@
(defun select-load-tn-location (op sc) (defun select-load-tn-location (op sc)
(declare (type tn-ref op) (type sc sc)) (declare (type tn-ref op) (type sc sc))
(dolist (loc (sc-locations sc) nil) (dolist (loc (sc-locations sc) nil)
(unless (load-tn-conflicts-in-sb op sc loc) (unless (load-tn-conflicts-in-sc op sc loc)
(return loc)))) (return loc))))
......
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