summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2010-07-11 17:01:17 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2010-07-11 17:01:17 +0000
commit744b3a5acdbd4d0fac9c6a7c9ad702502cc3cc37 (patch)
treed58ebbf7972f8977452bd3ef5b85fb71b9c78d6a /docs
parentd6d7abaf4ebbabb850aa9c20e1617f897608fe62 (diff)
downloadllvm-744b3a5acdbd4d0fac9c6a7c9ad702502cc3cc37.tar.gz
llvm-744b3a5acdbd4d0fac9c6a7c9ad702502cc3cc37.tar.bz2
llvm-744b3a5acdbd4d0fac9c6a7c9ad702502cc3cc37.tar.xz
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')
-rw-r--r--docs/WritingAnLLVMBackend.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/WritingAnLLVMBackend.html b/docs/WritingAnLLVMBackend.html
index d909a1a3fb..077dea0ed6 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> &mdash; Copy values between a pair of registers.</li>
+<li><tt>copyPhysReg</tt> &mdash; Copy values between a pair of physical
+ registers.</li>
<li><tt>storeRegToStackSlot</tt> &mdash; Store a register value to a stack
slot.</li>