diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-07-11 17:01:17 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2010-07-11 17:01:17 +0000 |
commit | 744b3a5acdbd4d0fac9c6a7c9ad702502cc3cc37 (patch) | |
tree | d58ebbf7972f8977452bd3ef5b85fb71b9c78d6a /test/CodeGen | |
parent | d6d7abaf4ebbabb850aa9c20e1617f897608fe62 (diff) | |
download | external_llvm-744b3a5acdbd4d0fac9c6a7c9ad702502cc3cc37.zip external_llvm-744b3a5acdbd4d0fac9c6a7c9ad702502cc3cc37.tar.gz external_llvm-744b3a5acdbd4d0fac9c6a7c9ad702502cc3cc37.tar.bz2 |
Remove TargetInstrInfo::copyRegToReg entirely.
Targets must now implement TargetInstrInfo::copyPhysReg instead. There is no
longer a default implementation forwarding to copyRegToReg.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108095 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/Blackfin/cmp64.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/Blackfin/cmp64.ll b/test/CodeGen/Blackfin/cmp64.ll index ef5bf45..6c4f9c5 100644 --- a/test/CodeGen/Blackfin/cmp64.ll +++ b/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: |