aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/ARM
diff options
context:
space:
mode:
authorBruno Cardoso Lopes <bruno.cardoso@gmail.com>2011-01-20 18:36:07 +0000
committerBruno Cardoso Lopes <bruno.cardoso@gmail.com>2011-01-20 18:36:07 +0000
commit6456121d5c40f56d45ff4b8b183d5468e43b9717 (patch)
treec90a9bed2bde63fb88ecc7f0b799f86a381def39 /lib/Target/ARM
parent8dd37f7b7dca7907f9f070dc96359f242e102163 (diff)
downloadexternal_llvm-6456121d5c40f56d45ff4b8b183d5468e43b9717.zip
external_llvm-6456121d5c40f56d45ff4b8b183d5468e43b9717.tar.gz
external_llvm-6456121d5c40f56d45ff4b8b183d5468e43b9717.tar.bz2
Change instruction names for consistency
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123930 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM')
-rw-r--r--lib/Target/ARM/ARMInstrThumb2.td10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/Target/ARM/ARMInstrThumb2.td b/lib/Target/ARM/ARMInstrThumb2.td
index 7cac569..7773891 100644
--- a/lib/Target/ARM/ARMInstrThumb2.td
+++ b/lib/Target/ARM/ARMInstrThumb2.td
@@ -3351,8 +3351,8 @@ class t2MovRCopro<string opc, bit direction>
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 @@ class t2MovRRCopro<string opc, bit direction>
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.