]> gitweb.factorcode.org Git - factor.git/commitdiff
compiler.cfg.scheduling: Fix V{ } -> { } unit test.
authorDoug Coleman <doug.coleman@gmail.com>
Sun, 23 Nov 2014 01:43:27 +0000 (17:43 -0800)
committerDoug Coleman <doug.coleman@gmail.com>
Sun, 23 Nov 2014 01:43:27 +0000 (17:43 -0800)
basis/compiler/cfg/scheduling/scheduling-tests.factor

index 8deb6ad8025256d0a7081481287f81e1967d2ec5..4f67e1eeb79a536ed0169e2fad3a7ea938f366f6 100644 (file)
@@ -85,8 +85,8 @@ IN: compiler.cfg.scheduling.tests
 
 {
     {
-        V{ T{ ##inc-r } T{ ##inc-d } T{ ##peek } T{ ##peek } }
-        V{
+        { T{ ##inc-r } T{ ##inc-d } T{ ##peek } T{ ##peek } }
+        {
             T{ ##load-tagged }
             T{ ##allot }
             T{ ##set-slot-imm }
@@ -103,7 +103,7 @@ IN: compiler.cfg.scheduling.tests
             T{ ##replace-imm }
             T{ ##replace }
         }
-        V{ T{ ##branch } }
+        { T{ ##branch } }
     }
 } [ test-1187 [ f >>insn# ] map split-insns ] unit-test