[llvm] r187973 - The name "tCDP" isn't used anywhere else in the source code, so renaming it for consistency doesn't cause any problems.
Mihai Popa
mihail.popa at gmail.com
Thu Aug 8 03:20:41 PDT 2013
Author: mpopa
Date: Thu Aug 8 05:20:41 2013
New Revision: 187973
URL: http://llvm.org/viewvc/llvm-project?rev=187973&view=rev
Log:
The name "tCDP" isn't used anywhere else in the source code, so renaming it for consistency doesn't cause any problems.
This is the only Thumb2 instruction defined with "t" prefix; all other Thumb2 instructions have "t2" prefix (e.g. "t2CDP2" which is defined immediately afterwards).
Patch by Artyom Skrobov.
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=187973&r1=187972&r2=187973&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMInstrThumb2.td (original)
+++ llvm/trunk/lib/Target/ARM/ARMInstrThumb2.td Thu Aug 8 05:20:41 2013
@@ -3943,7 +3943,7 @@ def t2MRRC2 : t2MovRRCopro<0b1111, "mrrc
// Other Coprocessor Instructions.
//
-def tCDP : T2Cop<0b1110, (outs), (ins p_imm:$cop, imm0_15:$opc1,
+def t2CDP : T2Cop<0b1110, (outs), (ins p_imm:$cop, imm0_15:$opc1,
c_imm:$CRd, c_imm:$CRn, c_imm:$CRm, imm0_7:$opc2),
"cdp", "\t$cop, $opc1, $CRd, $CRn, $CRm, $opc2",
[(int_arm_cdp imm:$cop, imm:$opc1, imm:$CRd, imm:$CRn,
More information about the llvm-commits
mailing list