]> gitweb.factorcode.org Git - factor.git/commitdiff
compiler: no spurious safepoint at start of loops
authorJoe Groff <arcata@gmail.com>
Thu, 20 Oct 2011 05:58:02 +0000 (22:58 -0700)
committerJoe Groff <arcata@gmail.com>
Fri, 28 Oct 2011 04:14:48 +0000 (21:14 -0700)
basis/compiler/cfg/builder/builder.factor

index 627eeafac22f93d93f9687f163096ea6de468186..5f933e096b076e0e5208884c9bf448b8ffef7c98 100644 (file)
@@ -102,7 +102,6 @@ GENERIC: emit-node ( node -- )
     basic-block get swap loops get set-at ;
 
 : emit-loop ( node -- )
-    ##safepoint
     ##branch
     begin-basic-block
     [ label>> id>> remember-loop ] [ child>> emit-nodes ] bi ;