[clang] [llvm] [RISCV] Add Zilsd and Zclsd Extensions (PR #131094)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 18 03:31:39 PDT 2025
================
@@ -176,6 +176,13 @@ def HasStdExtZicfiss : Predicate<"Subtarget->hasStdExtZicfiss()">,
"'Zicfiss' (Shadow stack)">;
def NoHasStdExtZicfiss : Predicate<"!Subtarget->hasStdExtZicfiss()">;
+def FeatureStdExtZilsd
+ : RISCVExtension<1, 0,
+ "Load/Store Pair Instructions">;
----------------
dong-miao wrote:
Many instruction sets that are only 32-bit or 64 bit have already been declared and defined in this format. To reduce some code and disrupt the overall definition format, it may not be a good choice.
https://github.com/llvm/llvm-project/pull/131094
More information about the llvm-commits
mailing list