[llvm] r348398 - [AArch64] Reword description of feature (NFC)

Evandro Menezes via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 5 10:42:57 PST 2018


Author: evandro
Date: Wed Dec  5 10:42:57 2018
New Revision: 348398

URL: http://llvm.org/viewvc/llvm-project?rev=348398&view=rev
Log:
[AArch64] Reword description of feature (NFC)

Reword the description of the feature that enables custom handling of cheap
instructions.

Modified:
    llvm/trunk/lib/Target/AArch64/AArch64.td

Modified: llvm/trunk/lib/Target/AArch64/AArch64.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AArch64/AArch64.td?rev=348398&r1=348397&r2=348398&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64.td (original)
+++ llvm/trunk/lib/Target/AArch64/AArch64.td Wed Dec  5 10:42:57 2018
@@ -125,11 +125,11 @@ def FeaturePredictableSelectIsExpensive
 
 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",




More information about the llvm-commits mailing list