0.6.12.4:
[sbcl.git] / src / compiler / copyprop.lisp
index a04f306..3bae557 100644 (file)
@@ -13,9 +13,6 @@
 
 (in-package "SB!C")
 
-(file-comment
-  "$Header$")
-
 ;;; In copy propagation, we manipulate sets of TNs. We only consider TNs whose
 ;;; sole write is by a MOVE VOP. This allows us to use a degenerate version of
 ;;; reaching definitions: since each such TN has only one definition, the TN
 
   (values))
 
-;;; Do copy propagation on Component by initializing the flow analysis sets,
-;;; doing flow analysis, and then propagating copies using the results.
+;;; Do copy propagation on COMPONENT by initializing the flow analysis
+;;; sets, doing flow analysis, and then propagating copies using the
+;;; results.
 (defun copy-propagate (component)
   (setf (block-out (component-head component)) (make-sset))
   (do-blocks (block component)