From c4227f13623a98cea57b9be2bb2c99bc19268f0c Mon Sep 17 00:00:00 2001 From: Jakob Stoklund Olesen Date: Sun, 11 Jul 2010 17:01:17 +0000 Subject: Remove TargetInstrInfo::copyRegToReg entirely. Targets must now implement TargetInstrInfo::copyPhysReg instead. There is no longer a default implementation forwarding to copyRegToReg. llvm-svn: 108095 --- llvm/test/TableGen/TargetInstrInfo.td | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'llvm/test/TableGen') diff --git a/llvm/test/TableGen/TargetInstrInfo.td b/llvm/test/TableGen/TargetInstrInfo.td index 2871eb81df9..146ef6fd768 100644 --- a/llvm/test/TableGen/TargetInstrInfo.td +++ b/llvm/test/TableGen/TargetInstrInfo.td @@ -83,8 +83,7 @@ class Inst opcode, // the pattern. // 6. Address expressions should become first-class entities. -// Simple copy instruction. isMoveInstr could easily be inferred from this, -// as could TargetRegisterInfo::copyRegToReg. +// Simple copy instruction. def MOV8rr : Inst<(ops R8:$dst, R8:$src), "mov $dst, $src", 0x88, MRMDestReg, [(set R8:$dst, R8:$src)]>; -- cgit v1.2.3