mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 22:48:57 +08:00
This patch adds support for Cortex-X1
gas * config/tc-aarch64.c: (aarch64_cpus): Add Cortex-X1. * doc/c-aarch64.texi: Document -mcpu=cortex-x1.
This commit is contained in:

committed by
Nick Clifton

parent
3454861d89
commit
47e1f9deaa
@ -1,3 +1,8 @@
|
|||||||
|
2020-09-28 Przemyslaw Wirkus <przemyslaw.wirkus@arm.com>
|
||||||
|
|
||||||
|
* config/tc-aarch64.c: (aarch64_cpus): Add Cortex-X1.
|
||||||
|
* doc/c-aarch64.texi: Document -mcpu=cortex-x1.
|
||||||
|
|
||||||
2020-09-28 Przemyslaw Wirkus <przemyslaw.wirkus@arm.com>
|
2020-09-28 Przemyslaw Wirkus <przemyslaw.wirkus@arm.com>
|
||||||
|
|
||||||
* testsuite/gas/aarch64/ete.d: New test.
|
* testsuite/gas/aarch64/ete.d: New test.
|
||||||
|
@ -8986,6 +8986,9 @@ static const struct aarch64_cpu_option_table aarch64_cpus[] = {
|
|||||||
{"xgene2", AARCH64_FEATURE (AARCH64_ARCH_V8,
|
{"xgene2", AARCH64_FEATURE (AARCH64_ARCH_V8,
|
||||||
AARCH64_FEATURE_CRC), "APM X-Gene 2"},
|
AARCH64_FEATURE_CRC), "APM X-Gene 2"},
|
||||||
{"cortex-r82", AARCH64_ARCH_V8_R, "Cortex-R82"},
|
{"cortex-r82", AARCH64_ARCH_V8_R, "Cortex-R82"},
|
||||||
|
{"cortex-x1", AARCH64_FEATURE (AARCH64_ARCH_V8_2,
|
||||||
|
AARCH64_FEATURE_DOTPROD | AARCH64_FEATURE_PROFILE),
|
||||||
|
"Cortex-X1"},
|
||||||
{"generic", AARCH64_ARCH_V8, NULL},
|
{"generic", AARCH64_ARCH_V8, NULL},
|
||||||
|
|
||||||
{NULL, AARCH64_ARCH_NONE, NULL}
|
{NULL, AARCH64_ARCH_NONE, NULL}
|
||||||
|
@ -80,8 +80,9 @@ on the target processor. The following processor names are recognized:
|
|||||||
@code{vulcan},
|
@code{vulcan},
|
||||||
@code{xgene1}
|
@code{xgene1}
|
||||||
@code{xgene2},
|
@code{xgene2},
|
||||||
|
@code{cortex-r82},
|
||||||
and
|
and
|
||||||
@code{cortex-r82}.
|
@code{cortex-x1}.
|
||||||
The special name @code{all} may be used to allow the assembler to accept
|
The special name @code{all} may be used to allow the assembler to accept
|
||||||
instructions valid for any supported processor, including all optional
|
instructions valid for any supported processor, including all optional
|
||||||
extensions.
|
extensions.
|
||||||
|
Reference in New Issue
Block a user