diff options
author | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2014-11-18 11:19:05 +0000 |
---|---|---|
committer | Marcus Shawcroft <marcus.shawcroft@arm.com> | 2014-11-18 11:19:05 +0000 |
commit | 070cb95614a9c50be0d1191d9b9daee178dd4c38 (patch) | |
tree | 6eecffcd279ff4580c20133aaf688dae5be27aaf /gas | |
parent | 0eff716535f3e8f501d6b438f7f796b70a0b9f98 (diff) | |
download | gdb-070cb95614a9c50be0d1191d9b9daee178dd4c38.zip gdb-070cb95614a9c50be0d1191d9b9daee178dd4c38.tar.gz gdb-070cb95614a9c50be0d1191d9b9daee178dd4c38.tar.bz2 |
[AArch64] Add xgene1.
The name xgene1 superceeds xgene-1. We retain support for the
original xgene-1 for compatibility but drop it from documentation.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-aarch64.c | 4 | ||||
-rw-r--r-- | gas/doc/c-aarch64.texi | 2 |
3 files changed, 10 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 3b1d034..0c76e0d 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2014-11-17 Philipp Tomsich <philipp.tomsich@theobroma-systems.com> + + * config/tc-aarch64.c (aarch64_cpus): Add "xgene1". + * doc/c-aarch64.texi: Rename xgene-1 to xgene1. + 2014-11-17 Ilya Tocar <ilya.tocar@intel.com> * config/tc-i386.c (cpu_arch): Add .avx512vbmi. diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c index 4f3fe47..fd0c201 100644 --- a/gas/config/tc-aarch64.c +++ b/gas/config/tc-aarch64.c @@ -7187,7 +7187,11 @@ static const struct aarch64_cpu_option_table aarch64_cpus[] = { {"cortex-a57", AARCH64_FEATURE(AARCH64_ARCH_V8, AARCH64_FEATURE_CRC), "Cortex-A57"}, {"thunderx", AARCH64_ARCH_V8, "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. */ {"xgene-1", AARCH64_ARCH_V8, "APM X-Gene 1"}, + {"xgene1", AARCH64_ARCH_V8, "APM X-Gene 1"}, {"generic", AARCH64_ARCH_V8, NULL}, {NULL, AARCH64_ARCH_NONE, NULL} diff --git a/gas/doc/c-aarch64.texi b/gas/doc/c-aarch64.texi index f3d4e41..8e22b21 100644 --- a/gas/doc/c-aarch64.texi +++ b/gas/doc/c-aarch64.texi @@ -59,7 +59,7 @@ on the target processor. The following processor names are recognized: @code{cortex-a57}, @code{thunderx}, and -@code{xgene-1}. +@code{xgene1}. The special name @code{all} may be used to allow the assembler to accept instructions valid for any supported processor, including all optional extensions. |