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 /docs/WritingAnLLVMBackend.html | |
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 'docs/WritingAnLLVMBackend.html')
-rw-r--r-- | docs/WritingAnLLVMBackend.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/WritingAnLLVMBackend.html b/docs/WritingAnLLVMBackend.html index d909a1a..077dea0 100644 --- a/docs/WritingAnLLVMBackend.html +++ b/docs/WritingAnLLVMBackend.html @@ -1310,7 +1310,8 @@ implementation in <tt>SparcInstrInfo.cpp</tt>: a direct store to a stack slot, return the register number of the destination and the <tt>FrameIndex</tt> of the stack slot.</li> -<li><tt>copyRegToReg</tt> — Copy values between a pair of registers.</li> +<li><tt>copyPhysReg</tt> — Copy values between a pair of physical + registers.</li> <li><tt>storeRegToStackSlot</tt> — Store a register value to a stack slot.</li> |