Skip to content

Commit

Permalink
[AArch64][NFC] Update comment in AArch64.td
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-shaposhnikov committed Apr 11, 2022
1 parent 626039c commit e995526
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions llvm/lib/Target/AArch64/AArch64.td
Expand Up @@ -1071,11 +1071,12 @@ def ProcessorFeatures {
// ETE and TRBE are future architecture extensions. We temporarily enable them
// by default for users targeting generic AArch64. The extensions do not
// affect code generated by the compiler and can be used only by explicitly
// mentioning the new system register names in assembly.
list<SubtargetFeature> Generic = [FeatureFPARMv8, FeatureNEON, FeatureETE, FeatureFuseAdrpAdd];
// mentioning the new system register names in assembly. FeatureFuseAdrpAdd is
// enabled under Generic to allow linker merging optimizations.
list<SubtargetFeature> Generic = [FeatureFPARMv8, FeatureNEON, FeatureETE,
FeatureFuseAdrpAdd];
}


def : ProcessorModel<"generic", CortexA55Model, ProcessorFeatures.Generic,
[FeatureFuseAES, FeaturePostRAScheduler]>;
def : ProcessorModel<"cortex-a35", CortexA53Model, ProcessorFeatures.A53,
Expand Down

0 comments on commit e995526

Please sign in to comment.