From 8ea2996438bcd70d2f4a4065d2413b5e70c39bd3 Mon Sep 17 00:00:00 2001 From: Daniel Ehrenberg Date: Thu, 16 Jul 2009 22:59:38 -0500 Subject: [PATCH] Removing two unused words in compiler.cfg.two-operand --- basis/compiler/cfg/two-operand/two-operand.factor | 4 ---- 1 file changed, 4 deletions(-) diff --git a/basis/compiler/cfg/two-operand/two-operand.factor b/basis/compiler/cfg/two-operand/two-operand.factor index 98bbfb9cd0..140219e0a1 100644 --- a/basis/compiler/cfg/two-operand/two-operand.factor +++ b/basis/compiler/cfg/two-operand/two-operand.factor @@ -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 , ]