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/CodeGen/Blackfin/cmp64.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/test/CodeGen') diff --git a/llvm/test/CodeGen/Blackfin/cmp64.ll b/llvm/test/CodeGen/Blackfin/cmp64.ll index ef5bf45861d..6c4f9c5bd7f 100644 --- a/llvm/test/CodeGen/Blackfin/cmp64.ll +++ b/llvm/test/CodeGen/Blackfin/cmp64.ll @@ -1,8 +1,8 @@ ; RUN: llc < %s -march=bfin ; This test tries to use a JustCC register as a data operand for MOVEcc. It -; calls copyRegToReg(JustCC -> DP), failing because JustCC can only be copied to -; D. The proper solution would be to restrict the virtual register to D only. +; copies (JustCC -> DP), failing because JustCC can only be copied to D. +; The proper solution would be to restrict the virtual register to D only. define i32 @main() { entry: -- cgit v1.2.3