]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/compiler/tree/dead-code/recursive/recursive.factor
Fix comments to be ! not #!.
[factor.git] / basis / compiler / tree / dead-code / recursive / recursive.factor
index c1ea77073328a829375706c3e1732608d9a97992..0e32cd33890e666dcd7e86d9f3e3ff55c0e979e4 100644 (file)
@@ -8,16 +8,16 @@ stack-checker.backend ;
 IN: compiler.tree.dead-code.recursive
 
 M: #enter-recursive compute-live-values*
-    #! If the output of an #enter-recursive is live, then the
-    #! corresponding inputs to the #call-recursive are live also.
+    ! If the output of an #enter-recursive is live, then the
+    ! corresponding inputs to the #call-recursive are live also.
     [ out-d>> ] [ recursive-phi-in ] bi look-at-phi ;
 
 M: #return-recursive compute-live-values*
     [ out-d>> ] [ in-d>> ] bi look-at-mapping ;
 
 M: #call-recursive compute-live-values*
-    #! If the output of a #call-recursive is live, then the
-    #! corresponding inputs to #return nodes are live also.
+    ! If the output of a #call-recursive is live, then the
+    ! corresponding inputs to #return nodes are live also.
     [ out-d>> ] [ label>> return>> in-d>> ] bi look-at-mapping ;
 
 :: drop-dead-inputs ( inputs outputs -- #shuffle )