]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
aarch64: Remove redundant generic cpu entry
authorAndrew Carlotti <andrew.carlotti@arm.com>
Wed, 8 Jan 2025 20:27:17 +0000 (20:27 +0000)
committerAndrew Carlotti <andrew.carlotti@arm.com>
Fri, 24 Jan 2025 19:01:03 +0000 (19:01 +0000)
The list of cores in aarch64-common.cc included an explicit "generic"
entry, despite this entry also being present in aarch64-cores.def.

gcc/ChangeLog:

* common/config/aarch64/aarch64-common.cc
(all_cores): Remove explicit generic entry.

gcc/common/config/aarch64/aarch64-common.cc

index 92df8b619305ba8b1c9a4b92f0674f02784f1a3a..75600548fdc6ba6383174ba81202a3a079a2bf27 100644 (file)
@@ -189,7 +189,6 @@ static constexpr processor_name_to_arch all_cores[] =
 #define AARCH64_CORE(NAME, CORE_IDENT, C, ARCH_IDENT, E, F, G, H, I) \
   {NAME, AARCH64_ARCH_##ARCH_IDENT, feature_deps::cpu_##CORE_IDENT},
 #include "config/aarch64/aarch64-cores.def"
-  {"generic", AARCH64_ARCH_V8A, feature_deps::V8A ().enable},
   {"", aarch64_no_arch, 0}
 };