[llvm] 5eae095 - [RISCV] Rename some SubtargetFeature names to remove an extra 's'. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 2 15:49:25 PST 2024


Author: Craig Topper
Date: 2024-02-02T15:49:06-08:00
New Revision: 5eae09519c8ca208e0d971acce35870955612615

URL: https://github.com/llvm/llvm-project/commit/5eae09519c8ca208e0d971acce35870955612615
DIFF: https://github.com/llvm/llvm-project/commit/5eae09519c8ca208e0d971acce35870955612615.diff

LOG: [RISCV] Rename some SubtargetFeature names to remove an extra 's'. NFC

I wrote FeaturesStdExt instead of FeatureStdExt in a previous patch.

Added: 
    

Modified: 
    llvm/lib/Target/RISCV/RISCVFeatures.td

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/RISCV/RISCVFeatures.td b/llvm/lib/Target/RISCV/RISCVFeatures.td
index 6525176670c92..af7519cedca11 100644
--- a/llvm/lib/Target/RISCV/RISCVFeatures.td
+++ b/llvm/lib/Target/RISCV/RISCVFeatures.td
@@ -849,15 +849,15 @@ def FeatureStdExtSsu64xl
     : SubtargetFeature<"ssu64xl", "HasStdExtSsu64xl", "true",
                        "'Ssu64xl' (UXLEN=64 supported)", []>;
 
-def FeaturesStdExtSvade
+def FeatureStdExtSvade
     : SubtargetFeature<"svade", "HasStdExtSvade", "true",
                        "'Svade' (Raise exceptions on improper A/D bits)", []>;
 
-def FeaturesStdExtSvadu
+def FeatureStdExtSvadu
     : SubtargetFeature<"svadu", "HasStdExtSvadu", "true",
                        "'Svadu' (Hardware A/D updates)", []>;
 
-def FeaturesStdExtSvbare
+def FeatureStdExtSvbare
     : SubtargetFeature<"svbare", "HasStdExtSvbare", "true",
                        "'Svbare' $(satp mode Bare supported)", []>;
 


        


More information about the llvm-commits mailing list