[llvm] f489043 - [RISCV] Sort the ImpliedExts tables in RISCVISAInfo.cpp alphabetically. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 24 08:41:32 PDT 2024


Author: Craig Topper
Date: 2024-04-24T08:41:23-07:00
New Revision: f489043826b25af7afa9f95faa0c301bd55681a2

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

LOG: [RISCV] Sort the ImpliedExts tables in RISCVISAInfo.cpp alphabetically. NFC

Added: 
    

Modified: 
    llvm/lib/TargetParser/RISCVISAInfo.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/TargetParser/RISCVISAInfo.cpp b/llvm/lib/TargetParser/RISCVISAInfo.cpp
index bd907fc9a9f267..39cb3f2c2fe178 100644
--- a/llvm/lib/TargetParser/RISCVISAInfo.cpp
+++ b/llvm/lib/TargetParser/RISCVISAInfo.cpp
@@ -1044,12 +1044,12 @@ Error RISCVISAInfo::checkDependency() {
 static const char *ImpliedExtsD[] = {"f"};
 static const char *ImpliedExtsF[] = {"zicsr"};
 static const char *ImpliedExtsV[] = {"zvl128b", "zve64d"};
-static const char *ImpliedExtsXTHeadVdot[] = {"v"};
 static const char *ImpliedExtsXSfvcp[] = {"zve32x"};
 static const char *ImpliedExtsXSfvfnrclipxfqf[] = {"zve32f"};
 static const char *ImpliedExtsXSfvfwmaccqqq[] = {"zvfbfmin"};
 static const char *ImpliedExtsXSfvqmaccdod[] = {"zve32x"};
 static const char *ImpliedExtsXSfvqmaccqoq[] = {"zve32x"};
+static const char *ImpliedExtsXTHeadVdot[] = {"v"};
 static const char *ImpliedExtsZcb[] = {"zca"};
 static const char *ImpliedExtsZcd[] = {"d", "zca"};
 static const char *ImpliedExtsZce[] = {"zcb", "zcmp", "zcmt"};
@@ -1065,8 +1065,8 @@ static const char *ImpliedExtsZfhmin[] = {"f"};
 static const char *ImpliedExtsZfinx[] = {"zicsr"};
 static const char *ImpliedExtsZhinx[] = {"zhinxmin"};
 static const char *ImpliedExtsZhinxmin[] = {"zfinx"};
-static const char *ImpliedExtsZicntr[] = {"zicsr"};
 static const char *ImpliedExtsZicfiss[] = {"zicsr", "zimop"};
+static const char *ImpliedExtsZicntr[] = {"zicsr"};
 static const char *ImpliedExtsZihpm[] = {"zicsr"};
 static const char *ImpliedExtsZk[] = {"zkn", "zkt", "zkr"};
 static const char *ImpliedExtsZkn[] = {"zbkb", "zbkc", "zbkx",


        


More information about the llvm-commits mailing list