From: Matthew Wahab Date: Wed, 11 Mar 2015 13:55:18 +0000 (+0000) Subject: [AArch64][2.25] Backport support for Cortex-A72 X-Git-Tag: binutils-2_25_1~189 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7428be56551e2880cd659c841eb032e163891db9;p=thirdparty%2Fbinutils-gdb.git [AArch64][2.25] Backport support for Cortex-A72 2015-03-11 Matthew Wahab gas/ * config/tc-aarch64.c: Add support for Cortex-A72. * doc/c-aarch64.texi (-mcpu=): Add "cortex-a72". --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 605846292de..ae0d46015c8 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2015-03-11 Matthew Wahab + + * config/tc-aarch64.c: Add support for Cortex-A72. + * doc/c-aarch64.texi (-mcpu=): Add "cortex-a72". + 2015-03-11 Matthew Wahab * config/tc-arm.c: Add support for Cortex-A72. diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c index 0e587646d93..de4e2033469 100644 --- a/gas/config/tc-aarch64.c +++ b/gas/config/tc-aarch64.c @@ -7184,6 +7184,8 @@ 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"}, + {"cortex-a72", AARCH64_FEATURE (AARCH64_ARCH_V8, + AARCH64_FEATURE_CRC), "Cortex-A72"}, /* The 'xgene-1' name is an older name for 'xgene1', which was used in earlier releases and is superseded by 'xgene1' in all tools. */ diff --git a/gas/doc/c-aarch64.texi b/gas/doc/c-aarch64.texi index 8fbae061530..cb94251ebd9 100644 --- a/gas/doc/c-aarch64.texi +++ b/gas/doc/c-aarch64.texi @@ -57,6 +57,7 @@ message if an attempt is made to assemble an instruction which will not execute on the target processor. The following processor names are recognized: @code{cortex-a53}, @code{cortex-a57}, +@code{cortex-a72}, @code{xgene1}, and @code{xgene2}.