[llvm-commits] [llvm] r108082 - /llvm/trunk/lib/Target/PIC16/PIC16InstrInfo.td
Jakob Stoklund Olesen
stoklund at 2pi.dk
Sun Jul 11 00:30:57 PDT 2010
Author: stoklund
Date: Sun Jul 11 02:30:57 2010
New Revision: 108082
URL: http://llvm.org/viewvc/llvm-project?rev=108082&view=rev
Log:
Fix PIC16 comments referencing copyRegToReg.
Modified:
llvm/trunk/lib/Target/PIC16/PIC16InstrInfo.td
Modified: llvm/trunk/lib/Target/PIC16/PIC16InstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/PIC16/PIC16InstrInfo.td?rev=108082&r1=108081&r2=108082&view=diff
==============================================================================
--- llvm/trunk/lib/Target/PIC16/PIC16InstrInfo.td (original)
+++ llvm/trunk/lib/Target/PIC16/PIC16InstrInfo.td Sun Jul 11 02:30:57 2010
@@ -146,7 +146,7 @@
// F = F Op W : Load the value from F, do op with W and store in F.
// This insn class is not marked as TwoAddress because the reg is
// being used as a source operand only. (Remember a TwoAddress insn
-// needs a copyRegToReg.)
+// needs a copy.)
let mayStore = 1 in
class BinOpWF<bits<6> OpCode, string OpcStr, SDNode OpNode>:
ByteFormat<OpCode, (outs),
@@ -234,8 +234,8 @@
[(set PCLATHR:$dst , (MTPCLATH GPR:$val))]>;
//----------------------------
-// copyRegToReg
-// copyRegToReg insns. These are dummy. They should always be deleted
+// copyPhysReg
+// copyPhysReg insns. These are dummy. They should always be deleted
// by the optimizer and never be present in the final generated code.
// if they are, then we have to write correct macros for these insns.
//----------------------------
More information about the llvm-commits
mailing list