[llvm] [clang] [AArch64] Add support for Cortex-A520, Cortex-A720 and Cortex-X4 CPUs (PR #72395)

Lucas Duarte Prates via cfe-commits cfe-commits at lists.llvm.org
Thu Nov 16 07:37:27 PST 2023


================
@@ -1372,6 +1408,11 @@ def ProcessorFeatures {
                                  FeatureSPE, FeatureBF16, FeatureMatMulInt8,
                                  FeatureMTE, FeatureSVE2BitPerm, FeatureFullFP16,
                                  FeatureFP16FML];
+  list<SubtargetFeature> X4 =   [HasV9_2aOps, FeatureSVE, FeatureNEON,
----------------
pratlucas wrote:

`FeatureSVE`, `FeatureFullFP16`, `FeatureNeon`, `FeatureBF16` and `FeatureMatMulInt8` are already enabled by default on Armv9.2-A. Can they be removed from this list to avoid the redundancy?

https://github.com/llvm/llvm-project/pull/72395


More information about the cfe-commits mailing list