This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Add GAS Cortex-A5 support


The patch below adds gas support for the ARM Cortex-A5. 
Nothing interesting, just another ARMv7-A core.

Applied to CVS head.

Paul

2009-10-29  Paul Brook  <paul@codesourcery.com>

	gas/
	* doc/c-arm.texi: Document ARM -mcpu=cortex-a5.
	* config/arm/tc-arm.c (arm_cpu_option_table): Add cortex-a5.

Index: gas/doc/c-arm.texi
===================================================================
--- gas/doc/c-arm.texi	(revision 266991)
+++ gas/doc/c-arm.texi	(working copy)
@@ -112,6 +112,7 @@ recognized: 
 @code{arm1176jzf-s},
 @code{mpcore},
 @code{mpcorenovfp},
+@code{cortex-a5},
 @code{cortex-a8},
 @code{cortex-a9},
 @code{cortex-r4},
Index: gas/config/tc-arm.c
===================================================================
--- gas/config/tc-arm.c	(revision 266991)
+++ gas/config/tc-arm.c	(working copy)
@@ -21853,6 +21853,7 @@ static const struct arm_cpu_option_table
   {"arm1156t2f-s",	ARM_ARCH_V6T2,	 FPU_ARCH_VFP_V2, NULL},
   {"arm1176jz-s",	ARM_ARCH_V6ZK,	 FPU_NONE,	  NULL},
   {"arm1176jzf-s",	ARM_ARCH_V6ZK,	 FPU_ARCH_VFP_V2, NULL},
+  {"cortex-a5",		ARM_ARCH_V7A,	 FPU_NONE,	  NULL},
   {"cortex-a8",		ARM_ARCH_V7A,	 ARM_FEATURE (0, FPU_VFP_V3
                                                         | FPU_NEON_EXT_V1),
                                                           NULL},


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]