X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fdebug.lisp;h=9c84d2969977d04ab88ae2527e6072a25dc779bc;hb=cf607a404d7518e8a18c9e362913f370eb9a5e38;hp=7f67f0ffb7294b5681b72853d3f4f59a4cb823e3;hpb=c7dc5b2a1f56ed0583a0b3ea61b6ceb540c6f89e;p=sbcl.git diff --git a/src/compiler/debug.lisp b/src/compiler/debug.lisp index 7f67f0f..9c84d29 100644 --- a/src/compiler/debug.lisp +++ b/src/compiler/debug.lisp @@ -1134,8 +1134,8 @@ (defvar *list-conflicts-table* (make-hash-table :test 'eq)) -;;; Add all ALWAYS-LIVE TNs in Block to the conflicts. TN is ignored when -;;; it appears in the global conflicts. +;;; Add all ALWAYS-LIVE TNs in BLOCK to the conflicts. TN is ignored +;;; when it appears in the global conflicts. (defun add-always-live-tns (block tn) (declare (type ir2-block block) (type tn tn)) (do ((conf (ir2-block-global-tns block) @@ -1147,7 +1147,7 @@ (setf (gethash btn *list-conflicts-table*) t))))) (values)) -;;; Add all local TNs in block to the conflicts. +;;; Add all local TNs in BLOCK to the conflicts. (defun add-all-local-tns (block) (declare (type ir2-block block)) (let ((ltns (ir2-block-local-tns block))) @@ -1176,7 +1176,8 @@ (do ((conf confs (global-conflicts-next-tnwise conf))) ((null conf)) (format t "~&#~%" - (block-number (ir2-block-block (global-conflicts-block conf))) + (block-number (ir2-block-block (global-conflicts-block + conf))) (global-conflicts-kind conf)) (let ((block (global-conflicts-block conf))) (add-always-live-tns block tn)