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] [AArch64][gas] Add support for Cortex-A73


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

commit 1aa70332cab048c3a7bb6dd7dc8b7a1b686ea657
Author: Kyrylo Tkachov <kyrylo.tkachov@arm.com>
Date:   Fri Jun 3 16:59:24 2016 +0100

    [AArch64][gas] Add support for Cortex-A73
    
    	* config/tc-aarch64.c (aarch64_cpus): Add cortex-a73 entry.
    	* doc/c-aarch64.texi (-mcpu): Document cortex-a73 value.

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

diff --git a/gas/ChangeLog b/gas/ChangeLog
index ff95ea9..33a1e28 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,5 +1,10 @@
 2016-06-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
 
+	* config/tc-aarch64.c (aarch64_cpus): Add cortex-a73 entry.
+	* doc/c-aarch64.texi (-mcpu): Document cortex-a73 value.
+
+2016-06-03  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
+
 	* config/tc-arm.c (arm_cpus): Add cortex-a73 entry.
 	* doc/c-arm.texi (-mcpu=): Document cortex-a73 value.
 
diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c
index 415663b..00a931e 100644
--- a/gas/config/tc-aarch64.c
+++ b/gas/config/tc-aarch64.c
@@ -7756,6 +7756,8 @@ static const struct aarch64_cpu_option_table aarch64_cpus[] = {
 				  AARCH64_FEATURE_CRC), "Cortex-A57"},
   {"cortex-a72", AARCH64_FEATURE (AARCH64_ARCH_V8,
 				  AARCH64_FEATURE_CRC), "Cortex-A72"},
+  {"cortex-a73", AARCH64_FEATURE (AARCH64_ARCH_V8,
+				  AARCH64_FEATURE_CRC), "Cortex-A73"},
   {"exynos-m1", AARCH64_FEATURE (AARCH64_ARCH_V8,
 				 AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
 				"Samsung Exynos M1"},
diff --git a/gas/doc/c-aarch64.texi b/gas/doc/c-aarch64.texi
index a193908..692172a 100644
--- a/gas/doc/c-aarch64.texi
+++ b/gas/doc/c-aarch64.texi
@@ -59,6 +59,7 @@ on the target processor.  The following processor names are recognized:
 @code{cortex-a53},
 @code{cortex-a57},
 @code{cortex-a72},
+@code{cortex-a73},
 @code{exynos-m1},
 @code{qdf24xx},
 @code{thunderx},


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