diff --git a/basis/compiler/cfg/test-words/authors.txt b/basis/compiler/cfg/test-words/authors.txt deleted file mode 100644 index 7c1b2f2279..0000000000 --- a/basis/compiler/cfg/test-words/authors.txt +++ /dev/null @@ -1 +0,0 @@ -Doug Coleman diff --git a/basis/compiler/cfg/test-words/test-words.factor b/basis/compiler/cfg/test-words/test-words.factor deleted file mode 100644 index bbe39abbd6..0000000000 --- a/basis/compiler/cfg/test-words/test-words.factor +++ /dev/null @@ -1,17 +0,0 @@ -! Copyright (C) 2014 Doug Coleman. -! See http://factorcode.org/license.txt for BSD license. -USING: accessors compiler.cfg.instructions kernel math sequences ; -IN: compiler.cfg.test-words - -: test-not-in-order ( -- nodes ) - V{ - ##load-tagged - ##allot - ##set-slot-imm - ##load-reference - ##allot - ##set-slot-imm - ##set-slot-imm - ##set-slot-imm - ##replace - } [ [ new ] [ 2 * ] bi* >>insn# ] map-index ;