[llvm-commits] [llvm] r123930 - /llvm/trunk/lib/Target/ARM/ARMInstrThumb2.td

Bruno Cardoso Lopes bruno.cardoso at gmail.com
Thu Jan 20 10:36:07 PST 2011


Author: bruno
Date: Thu Jan 20 12:36:07 2011
New Revision: 123930

URL: http://llvm.org/viewvc/llvm-project?rev=123930&view=rev
Log:
Change instruction names for consistency

Modified:
    llvm/trunk/lib/Target/ARM/ARMInstrThumb2.td

Modified: llvm/trunk/lib/Target/ARM/ARMInstrThumb2.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMInstrThumb2.td?rev=123930&r1=123929&r2=123930&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMInstrThumb2.td (original)
+++ llvm/trunk/lib/Target/ARM/ARMInstrThumb2.td Thu Jan 20 12:36:07 2011
@@ -3351,8 +3351,8 @@
   let Inst{19-16} = CRn;
 }
 
-def t2MCR : t2MovRCopro<"mcr2", 0 /* from ARM core register to coprocessor */>;
-def t2MRC : t2MovRCopro<"mrc2", 1 /* from coprocessor to ARM core register */>;
+def t2MCR2 : t2MovRCopro<"mcr2", 0 /* from ARM core register to coprocessor */>;
+def t2MRC2 : t2MovRCopro<"mrc2", 1 /* from coprocessor to ARM core register */>;
 
 class t2MovRRCopro<string opc, bit direction>
   : T2Cop<(outs), (ins p_imm:$cop, i32imm:$opc1, GPR:$Rt, GPR:$Rt2, c_imm:$CRm),
@@ -3375,8 +3375,10 @@
   let Inst{3-0}   = CRm;
 }
 
-def t2MCRR : t2MovRRCopro<"mcrr2",0/* from ARM core register to coprocessor */>;
-def t2MRRC : t2MovRRCopro<"mrrc2",1/* from coprocessor to ARM core register */>;
+def t2MCRR2 : t2MovRRCopro<"mcrr2",
+                           0 /* from ARM core register to coprocessor */>;
+def t2MRRC2 : t2MovRRCopro<"mrrc2",
+                           1 /* from coprocessor to ARM core register */>;
 
 //===----------------------------------------------------------------------===//
 // Other Coprocessor Instructions.  For disassembly only.





More information about the llvm-commits mailing list