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/binutils-2_25-branch] [AArch64][2.25] Backport support for Cortex-A72


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

commit 7428be56551e2880cd659c841eb032e163891db9
Author: Matthew Wahab <matthew.wahab@arm.com>
Date:   Wed Mar 11 13:55:18 2015 +0000

    [AArch64][2.25] Backport support for Cortex-A72
    
    2015-03-11  Matthew Wahab  <matthew.wahab@arm.com>
    
    gas/
      * config/tc-aarch64.c: Add support for Cortex-A72.
      * doc/c-aarch64.texi (-mcpu=): Add "cortex-a72".

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 6058462..ae0d460 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,5 +1,10 @@
 2015-03-11  Matthew Wahab  <matthew.wahab@arm.com>
 
+	* config/tc-aarch64.c: Add support for Cortex-A72.
+	* doc/c-aarch64.texi (-mcpu=): Add "cortex-a72".
+
+2015-03-11  Matthew Wahab  <matthew.wahab@arm.com>
+
 	* config/tc-arm.c: Add support for Cortex-A72.
 
 2015-02-11  Alan Modra  <amodra@gmail.com>
diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c
index 0e58764..de4e203 100644
--- a/gas/config/tc-aarch64.c
+++ b/gas/config/tc-aarch64.c
@@ -7184,6 +7184,8 @@ static const struct aarch64_cpu_option_table aarch64_cpus[] = {
 				 AARCH64_FEATURE_CRC), "Cortex-A53"},
   {"cortex-a57", AARCH64_FEATURE(AARCH64_ARCH_V8,
 				 AARCH64_FEATURE_CRC), "Cortex-A57"},
+  {"cortex-a72", AARCH64_FEATURE (AARCH64_ARCH_V8,
+				  AARCH64_FEATURE_CRC), "Cortex-A72"},
   /* The 'xgene-1' name is an older name for 'xgene1', which was used
      in earlier releases and is superseded by 'xgene1' in all
      tools.  */
diff --git a/gas/doc/c-aarch64.texi b/gas/doc/c-aarch64.texi
index 8fbae06..cb94251 100644
--- a/gas/doc/c-aarch64.texi
+++ b/gas/doc/c-aarch64.texi
@@ -57,6 +57,7 @@ message if an attempt is made to assemble an instruction which will not execute
 on the target processor.  The following processor names are recognized:
 @code{cortex-a53},
 @code{cortex-a57},
+@code{cortex-a72},
 @code{xgene1},
 and
 @code{xgene2}.


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