[llvm] f3f3c9c - [RISCV] Fix name of Zba extension (NFC)

Simon Cook via llvm-commits llvm-commits at lists.llvm.org
Sun Jan 24 13:03:04 PST 2021


Author: Simon Cook
Date: 2021-01-24T21:02:34Z
New Revision: f3f3c9c2549a268e602be8730990b552e30cc932

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

LOG: [RISCV] Fix name of Zba extension (NFC)

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/RISCV/RISCV.td b/llvm/lib/Target/RISCV/RISCV.td
index a17abd0f96da..83811dadc9ab 100644
--- a/llvm/lib/Target/RISCV/RISCV.td
+++ b/llvm/lib/Target/RISCV/RISCV.td
@@ -58,7 +58,7 @@ def HasStdExtC : Predicate<"Subtarget->hasStdExtC()">,
 
 def FeatureExtZba
     : SubtargetFeature<"experimental-zba", "HasStdExtZba", "true",
-                       "'Zba' (Base 'B' Instructions)">;
+                       "'Zba' (Address calculation 'B' Instructions)">;
 def HasStdExtZba : Predicate<"Subtarget->hasStdExtZba()">,
                              AssemblerPredicate<(all_of FeatureExtZba),
                              "'Zba' (Address calculation 'B' Instructions)">;


        


More information about the llvm-commits mailing list