diff options
author | Evandro Menezes <e.menezes@samsung.com> | 2018-12-05 18:42:57 +0000 |
---|---|---|
committer | Evandro Menezes <e.menezes@samsung.com> | 2018-12-05 18:42:57 +0000 |
commit | 4b5707550c5fa6cdc3ff997b00d94a622d829c97 (patch) | |
tree | 82abd872215d92f128683a88838cfbdbc2e52cce /llvm/lib | |
parent | 56acd5a66ea3800a23be0cfdbc422624398cb096 (diff) | |
download | bcm5719-llvm-4b5707550c5fa6cdc3ff997b00d94a622d829c97.tar.gz bcm5719-llvm-4b5707550c5fa6cdc3ff997b00d94a622d829c97.zip |
[AArch64] Reword description of feature (NFC)
Reword the description of the feature that enables custom handling of cheap
instructions.
llvm-svn: 348398
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/AArch64/AArch64.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64.td b/llvm/lib/Target/AArch64/AArch64.td index 5bd1fa17369..a16e8a1bd16 100644 --- a/llvm/lib/Target/AArch64/AArch64.td +++ b/llvm/lib/Target/AArch64/AArch64.td @@ -125,11 +125,11 @@ def FeaturePredictableSelectIsExpensive : SubtargetFeature< def FeatureCustomCheapAsMoveHandling : SubtargetFeature<"custom-cheap-as-move", "CustomAsCheapAsMove", "true", - "Use custom code for TargetInstrInfo::isAsCheapAsAMove()">; + "Use custom handling of cheap instructions">; def FeatureExynosCheapAsMoveHandling : SubtargetFeature<"exynos-cheap-as-move", "ExynosAsCheapAsMove", "true", - "Use Exynos specific code in TargetInstrInfo::isAsCheapAsAMove()", + "Use Exynos specific handling of cheap instructions", [FeatureCustomCheapAsMoveHandling]>; def FeaturePostRAScheduler : SubtargetFeature<"use-postra-scheduler", |