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 14:10:33 +0000 |
commit | eb2ea29c6d2e200b4ff485f89c9ebc156bd5b391 (patch) | |
tree | 79928a45c007a61f500a4dd6e0b20d520fb73bbd /gas | |
parent | 5ecffcbbd49639b83e574a0411f8a3088093f4aa (diff) | |
download | gdb-eb2ea29c6d2e200b4ff485f89c9ebc156bd5b391.zip gdb-eb2ea29c6d2e200b4ff485f89c9ebc156bd5b391.tar.gz gdb-eb2ea29c6d2e200b4ff485f89c9ebc156bd5b391.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.
Conflicts:
gas/config/tc-aarch64.c
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 bc39ebc..915264c 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-18 Marcus Shawcroft <marcus.shawcroft@arm.com> Apply trunk patch: diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c index 1461057..0d1d73a 100644 --- a/gas/config/tc-aarch64.c +++ b/gas/config/tc-aarch64.c @@ -7184,7 +7184,11 @@ 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"}, + /* 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}, /* These two are example CPUs supported in GCC, once we have real diff --git a/gas/doc/c-aarch64.texi b/gas/doc/c-aarch64.texi index 1f4ce4c..b4c0a10 100644 --- a/gas/doc/c-aarch64.texi +++ b/gas/doc/c-aarch64.texi @@ -58,7 +58,7 @@ on the target processor. The following processor names are recognized: @code{cortex-a53}, @code{cortex-a57}, 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. |