diff options
author | Marcus Shawcroft <marcus.shawcroft@arm.com> | 2014-11-18 13:59:37 +0000 |
---|---|---|
committer | Marcus Shawcroft <marcus.shawcroft@arm.com> | 2014-11-18 13:59:37 +0000 |
commit | 69852495aa2dee421e7c4436c12a1db53f96ee38 (patch) | |
tree | ab2a67d9fdb023071a78c3176145c418806fff40 /gas | |
parent | e0cbad0c13ad70390d6a42a8aa0446399b89be16 (diff) | |
download | binutils-69852495aa2dee421e7c4436c12a1db53f96ee38.tar.gz binutils-69852495aa2dee421e7c4436c12a1db53f96ee38.tar.bz2 binutils-69852495aa2dee421e7c4436c12a1db53f96ee38.zip |
Revert "[AArch64] Enable CRC feature in GAS for cortex-a53 and cortex-a57."
This reverts commit 9224a67a27a5adb4524a5d9b730045205ec04e9a.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/config/tc-aarch64.c | 7 |
2 files changed, 2 insertions, 11 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index ca7b9b92786..58ff08261d4 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -36,12 +36,6 @@ * doc/c-i386.texi: Re-arrange avx512* and xsave*. Add clflushopt and se1. Remove duplicated entries. -2014-11-13 Marcus Shawcroft <marcus.shawcroft@arm.com> - - Apply trunk patch: - * config/tc-aarch64.c (aarch64_cpus): Add CRC feature for - cortex-A53 and cortex-A57. - 2014-11-12 Alan Modra <amodra@gmail.com> PR ld/17482 diff --git a/gas/config/tc-aarch64.c b/gas/config/tc-aarch64.c index c0153bcffd6..150949cc685 100644 --- a/gas/config/tc-aarch64.c +++ b/gas/config/tc-aarch64.c @@ -7180,11 +7180,8 @@ struct aarch64_cpu_option_table recognized by GCC. */ static const struct aarch64_cpu_option_table aarch64_cpus[] = { {"all", AARCH64_ANY, NULL}, - {"cortex-a53", AARCH64_FEATURE(AARCH64_ARCH_V8, - AARCH64_FEATURE_CRC), "Cortex-A53"}, - {"cortex-a57", AARCH64_FEATURE(AARCH64_ARCH_V8, - AARCH64_FEATURE_CRC), "Cortex-A57"}, - {"thunderx", AARCH64_ARCH_V8, "Cavium ThunderX"}, + {"cortex-a53", AARCH64_ARCH_V8, "Cortex-A53"}, + {"cortex-a57", AARCH64_ARCH_V8, "Cortex-A57"}, {"xgene-1", AARCH64_ARCH_V8, "APM X-Gene 1"}, {"generic", AARCH64_ARCH_V8, NULL}, |