This is the mail archive of the binutils-cvs@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]

[binutils-gdb] Add support for Cortex-A35


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=43cdc0a8fbb1bc48f6d95183a6840a76aca41a8f

commit 43cdc0a8fbb1bc48f6d95183a6840a76aca41a8f
Author: Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
Date:   Thu Nov 12 11:12:53 2015 +0000

    Add support for Cortex-A35
    
    2015-11-12  James Greenhalgh  <james.greenhalgh@arm.com>
    
    	* config/tc-arm.c (arm_cpus): Likewise.
    	* doc/c-arm.texi (-mcpu=): Likewise.

Diff:
---
 gas/ChangeLog       | 5 +++++
 gas/config/tc-arm.c | 2 ++
 gas/doc/c-arm.texi  | 1 +
 3 files changed, 8 insertions(+)

diff --git a/gas/ChangeLog b/gas/ChangeLog
index 7c00c38..28f5b31 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2015-11-12  James Greenhalgh  <james.greenhalgh@arm.com>
+
+	* config/tc-arm.c (arm_cpus): Likewise.
+	* doc/c-arm.texi (-mcpu=): Likewise.
+
 2015-11-11  Matthew Wahab  <matthew.wahab@arm.com>
 
 	PR gas/19217
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c
index 5a8ac95..3b0a021 100644
--- a/gas/config/tc-arm.c
+++ b/gas/config/tc-arm.c
@@ -24711,6 +24711,8 @@ static const struct arm_cpu_option_table arm_cpus[] =
 								  "Cortex-A15"),
   ARM_CPU_OPT ("cortex-a17",	ARM_ARCH_V7VE,   FPU_ARCH_NEON_VFP_V4,
 								  "Cortex-A17"),
+  ARM_CPU_OPT ("cortex-a35",    ARM_ARCH_V8A,    FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
+								  "Cortex-A35"),
   ARM_CPU_OPT ("cortex-a53",    ARM_ARCH_V8A,    FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
 								  "Cortex-A53"),
   ARM_CPU_OPT ("cortex-a57",    ARM_ARCH_V8A,    FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
diff --git a/gas/doc/c-arm.texi b/gas/doc/c-arm.texi
index 661f631..9a34f5e 100644
--- a/gas/doc/c-arm.texi
+++ b/gas/doc/c-arm.texi
@@ -119,6 +119,7 @@ recognized:
 @code{cortex-a8},
 @code{cortex-a9},
 @code{cortex-a15},
+@code{cortex-a35},
 @code{cortex-a53},
 @code{cortex-a57},
 @code{cortex-a72},


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