]> gitweb.factorcode.org Git - factor.git/commitdiff
compiler.cfg.linear-scan.resolve: fix compile error
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Sun, 14 Jun 2009 22:00:52 +0000 (17:00 -0500)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Sun, 14 Jun 2009 22:00:52 +0000 (17:00 -0500)
basis/compiler/cfg/linear-scan/resolve/resolve.factor

index 8996327bebea2404ef27251c4f81c97688a6dfcd..df2dbb1198add417e12870a7d3283360fb332383 100644 (file)
@@ -21,7 +21,7 @@ IN: compiler.cfg.linear-scan.resolve
     ;
 
 : resolve-edge-data-flow ( bb to -- )
-    [ 2dup live-in [ resolve-value-data-flow ] with with each ]
+    [ dup live-in [ resolve-value-data-flow ] with with each ]
     [ resolve-mappings ]
     2bi ;