This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
Re: [PATCH][ARM] Add Cortex-A17 support to gas
- From: Richard Earnshaw <rearnsha at arm dot com>
- To: Kyrill Tkachov <kyrylo dot tkachov at arm dot com>, "binutils at sourceware dot org" <binutils at sourceware dot org>
- Date: Tue, 09 Sep 2014 09:58:55 +0100
- Subject: Re: [PATCH][ARM] Add Cortex-A17 support to gas
- Authentication-results: sourceware.org; auth=none
- References: <540EB8CD dot 9020207 at arm dot com>
On 09/09/14 09:22, Kyrill Tkachov wrote:
> Hi all,
>
> This patch adds the cortex-a17 CPU option to gas. As you can see from
> the patch, Cortex-A17 is an ARMv7ve processor with a neon-vfpv4 FPU.
>
> Tested arm-none-eabi and made sure that the assembler accepts this option.
>
> Ok for trunk?
>
> 2014-09-09 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
>
> * config/tc-arm.c (arm_cpus): Add cortex-a17.
>
>
> arm-gas-a17.patch
>
>
> diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c
> index 0c28b01..2aaa885 100644
> --- a/gas/config/tc-arm.c
> +++ b/gas/config/tc-arm.c
> @@ -24401,6 +24401,8 @@ static const struct arm_cpu_option_table arm_cpus[] =
> "Cortex-A12"),
> ARM_CPU_OPT ("cortex-a15", ARM_ARCH_V7VE, FPU_ARCH_NEON_VFP_V4,
> "Cortex-A15"),
> + ARM_CPU_OPT ("cortex-a17", ARM_ARCH_V7VE, FPU_ARCH_NEON_VFP_V4,
> + "Cortex-A17"),
> ARM_CPU_OPT ("cortex-a53", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
> "Cortex-A53"),
> ARM_CPU_OPT ("cortex-a57", ARM_ARCH_V8A, FPU_ARCH_CRYPTO_NEON_VFP_ARMV8,
>
OK.
R.