From: Evandro Menezes Date: Wed, 1 Apr 2015 23:08:00 +0000 (-0500) Subject: Add support for the Samsung Exynos M1 processor. X-Git-Tag: binutils-2_25_1~143 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b0356a6f1b66888dee6d4551ddde2dc89ebe6cd6;p=thirdparty%2Fbinutils-gdb.git Add support for the Samsung Exynos M1 processor. gas/ * config/tc-aarch64.c: Add support for Samsung Exynos M1. * doc/c-aarch64.texi (-mcpu=): Add "exynos-m1". --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 2b74942d501..300833a8e63 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2015-04-06 Evandro Menezes + + * config/tc-aarch64.c: Add support for Samsung Exynos M1. + * doc/c-aarch64.texi (-mcpu=): Add "exynos-m1". + 2015-04-06 Evandro Menezes * config/tc-arm.c: Add support for Samsung Exynos M1. diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c index de4e2033469..ce2ba95d7f6 100644 --- a/gas/config/tc-aarch64.c +++ b/gas/config/tc-aarch64.c @@ -7186,6 +7186,9 @@ static const struct aarch64_cpu_option_table aarch64_cpus[] = { AARCH64_FEATURE_CRC), "Cortex-A57"}, {"cortex-a72", AARCH64_FEATURE (AARCH64_ARCH_V8, AARCH64_FEATURE_CRC), "Cortex-A72"}, + {"exynos-m1", AARCH64_FEATURE (AARCH64_ARCH_V8, + AARCH64_FEATURE_CRC | AARCH64_FEATURE_CRYPTO), + "Samsung Exynos M1"}, /* 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 cb94251ebd9..2aaed677964 100644 --- a/gas/doc/c-aarch64.texi +++ b/gas/doc/c-aarch64.texi @@ -58,6 +58,7 @@ on the target processor. The following processor names are recognized: @code{cortex-a53}, @code{cortex-a57}, @code{cortex-a72}, +@code{exynos-m1}, @code{xgene1}, and @code{xgene2}.