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] [ARM][gas] Add support for Cortex-A32


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

commit 6735952f7c0f5f1f69a94c2d92c26e452a196da6
Author: Kyrylo Tkachov <kyrylo.tkachov@arm.com>
Date:   Wed Feb 24 10:55:09 2016 +0000

    [ARM][gas] Add support for Cortex-A32
    
    2016-02-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
    
        * config/tc-arm.c (arm_cpus): Add entry for cortex-a32.
        * doc/c-arm.texi (ARM Options): Document cortex-a32.

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 71fd54e..0ca8031 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,5 +1,10 @@
 2016-02-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
 
+	* config/tc-arm.c (arm_cpus): Add entry for cortex-a32.
+	* doc/c-arm.texi (ARM Options): Document cortex-a32.
+
+2016-02-24  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
+
     * doc/c-arm.texi (ARM Options): Document cortex-a17.
 
 2016-02-23  H.J. Lu  <hongjiu.lu@intel.com>
diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c
index 1917441..80230e4 100644
--- a/gas/config/tc-arm.c
+++ b/gas/config/tc-arm.c
@@ -24922,6 +24922,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-a32",    ARM_ARCH_V8A,    FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
+								  "Cortex-A32"),
   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,
diff --git a/gas/doc/c-arm.texi b/gas/doc/c-arm.texi
index 9a63a11..2a52cac 100644
--- a/gas/doc/c-arm.texi
+++ b/gas/doc/c-arm.texi
@@ -120,6 +120,7 @@ recognized:
 @code{cortex-a9},
 @code{cortex-a15},
 @code{cortex-a17},
+@code{cortex-a32},
 @code{cortex-a35},
 @code{cortex-a53},
 @code{cortex-a57},


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