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] gas thunderx support


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

commit faade85139b04a1de96fb78aab6ad5c25b826d01
Author: Jim Wilson <jim.wilson@linaro.org>
Date:   Fri Apr 24 13:38:25 2015 -0700

    gas thunderx support
    
    gas/
    * config/tc-aarch64.c (aarch64_cpus): Add CRC and CRYPTO features
    for thunderx.

Diff:
---
 gas/ChangeLog           | 7 ++++++-
 gas/config/tc-aarch64.c | 4 +++-
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/gas/ChangeLog b/gas/ChangeLog
index 7ea12d9..29870dd 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,4 +1,9 @@
-2015-04/24  Richard Earnshaw  <rearnsha@arm.com>
+2015-04-24  Jim Wilson  <jim.wilson@linaro.org>
+
+	* config/tc-aarch64.c (aarch64_cpus): Add CRC and CRYPTO features
+	for thunderx.
+
+2015-04-24  Richard Earnshaw  <rearnsha@arm.com>
 
 	* config/tc-arm.h (arm_min): New function.
 	(SUB_SEGMENT_ALIGN): Define.
diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c
index 5492ff4..dec50c7 100644
--- a/gas/config/tc-aarch64.c
+++ b/gas/config/tc-aarch64.c
@@ -7327,7 +7327,9 @@ static const struct aarch64_cpu_option_table aarch64_cpus[] = {
   {"exynos-m1", AARCH64_FEATURE (AARCH64_ARCH_V8,
 				 AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
 				"Samsung Exynos M1"},
-  {"thunderx", AARCH64_ARCH_V8, "Cavium ThunderX"},
+  {"thunderx", AARCH64_FEATURE (AARCH64_ARCH_V8,
+				AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO),
+   "Cavium ThunderX"},
   /* The 'xgene-1' name is an older name for 'xgene1', which was used
      in earlier releases and is superseded by 'xgene1' in all
      tools.  */


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