From ef8cab90796be8856937400977b2b35d4ebdd985 Mon Sep 17 00:00:00 2001 From: Bruno Cardoso Lopes Date: Thu, 20 Jan 2011 18:36:07 +0000 Subject: [PATCH] Change instruction names for consistency llvm-svn: 123930 --- llvm/lib/Target/ARM/ARMInstrThumb2.td | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/llvm/lib/Target/ARM/ARMInstrThumb2.td b/llvm/lib/Target/ARM/ARMInstrThumb2.td index 7cac56932148..777389181a8d 100644 --- a/llvm/lib/Target/ARM/ARMInstrThumb2.td +++ b/llvm/lib/Target/ARM/ARMInstrThumb2.td @@ -3351,8 +3351,8 @@ class t2MovRCopro 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 : T2Cop<(outs), (ins p_imm:$cop, i32imm:$opc1, GPR:$Rt, GPR:$Rt2, c_imm:$CRm), @@ -3375,8 +3375,10 @@ class t2MovRRCopro 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.