[llvm] [RISCV] Update descriptions for Zvk* shorthands. (PR #77961)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 12 10:45:32 PST 2024
https://github.com/topperc created https://github.com/llvm/llvm-project/pull/77961
This makes them more consistent with other extensions so they appear move similar in the -print-supported-extensions output.
>From 5cb9e3cc968aa21ad0017a1543586a7eb312c96b Mon Sep 17 00:00:00 2001
From: Craig Topper <craig.topper at sifive.com>
Date: Fri, 12 Jan 2024 10:43:44 -0800
Subject: [PATCH] [RISCV] Update descriptions for Zvk* shorthands.
This makes them more consistent with other extensions so they appear
move similar in the -print-supported-extensions output.
---
llvm/lib/Target/RISCV/RISCVFeatures.td | 20 ++++++++------------
1 file changed, 8 insertions(+), 12 deletions(-)
diff --git a/llvm/lib/Target/RISCV/RISCVFeatures.td b/llvm/lib/Target/RISCV/RISCVFeatures.td
index 4c99d8ce61ef02..754db2b85469c6 100644
--- a/llvm/lib/Target/RISCV/RISCVFeatures.td
+++ b/llvm/lib/Target/RISCV/RISCVFeatures.td
@@ -637,40 +637,36 @@ def FeatureStdExtZvkt
def FeatureStdExtZvkn
: SubtargetFeature<"zvkn", "HasStdExtZvkn", "true",
- "This extension is shorthand for the following set of "
- "other extensions: Zvkned, Zvknhb, Zvkb and Zvkt.",
+ "'Zvkn' (shorthand for 'Zvkned', 'Zvknhb', 'Zvkb', and "
+ "'Zvkt')",
[FeatureStdExtZvkned, FeatureStdExtZvknhb,
FeatureStdExtZvkb, FeatureStdExtZvkt]>;
def FeatureStdExtZvknc
: SubtargetFeature<"zvknc", "HasStdExtZvknc", "true",
- "This extension is shorthand for the following set of "
- "other extensions: Zvkn and Zvbc.",
+ "'Zvknc' (shorthand for 'Zvknc' and 'Zvbc')",
[FeatureStdExtZvkn, FeatureStdExtZvbc]>;
def FeatureStdExtZvkng
: SubtargetFeature<"zvkng", "HasStdExtZvkng", "true",
- "This extension is shorthand for the following set of "
- "other extensions: Zvkn and Zvkg.",
+ "'zvkng' (shorthand for 'Zvkn' and 'Zvkg')",
[FeatureStdExtZvkn, FeatureStdExtZvkg]>;
def FeatureStdExtZvks
: SubtargetFeature<"zvks", "HasStdExtZvks", "true",
- "This extension is shorthand for the following set of "
- "other extensions: Zvksed, Zvksh, Zvkb and Zvkt.",
+ "'Zvks' (shorthand for 'Zvksed', 'Zvksh', 'Zvkb', and "
+ "'Zvkt')",
[FeatureStdExtZvksed, FeatureStdExtZvksh,
FeatureStdExtZvkb, FeatureStdExtZvkt]>;
def FeatureStdExtZvksc
: SubtargetFeature<"zvksc", "HasStdExtZvksc", "true",
- "This extension is shorthand for the following set of "
- "other extensions: Zvks and Zvbc.",
+ "'Zvksc' (shorthand for 'Zvks' and 'Zvbc')",
[FeatureStdExtZvks, FeatureStdExtZvbc]>;
def FeatureStdExtZvksg
: SubtargetFeature<"zvksg", "HasStdExtZvksg", "true",
- "This extension is shorthand for the following set of "
- "other extensions: Zvks and Zvkg.",
+ "'Zvksg' (shorthand for 'Zvks' and 'Zvkg')",
[FeatureStdExtZvks, FeatureStdExtZvkg]>;
def FeatureStdExtZicfilp
More information about the llvm-commits
mailing list