]> gitweb.factorcode.org Git - factor.git/commitdiff
Removing two unused words in compiler.cfg.two-operand
authorDaniel Ehrenberg <littledan@Macintosh-122.local>
Fri, 17 Jul 2009 03:59:38 +0000 (22:59 -0500)
committerDaniel Ehrenberg <littledan@Macintosh-122.local>
Fri, 17 Jul 2009 03:59:38 +0000 (22:59 -0500)
basis/compiler/cfg/two-operand/two-operand.factor

index 98bbfb9cd0c9f9ed820fa55a53aa36a69413c2db..140219e0a184d4d315891c03a78916e6a28c79bd 100644 (file)
@@ -11,10 +11,6 @@ IN: compiler.cfg.two-operand
 ! since x86 has LEA and IMUL instructions which are effectively
 ! three-operand addition and multiplication, respectively.
 
-: make-copy ( dst src -- insn ) \ ##copy new-insn ; inline
-
-: make-copy/float ( dst src -- insn ) \ ##copy-float new-insn ; inline
-
 : convert-two-operand/integer ( insn -- )
     [ [ dst>> ] [ src1>> ] bi ##copy ]
     [ dup dst>> >>src1 , ]