[clang] [llvm] [RISCV] Add Zilsd and Zclsd Extensions (PR #131094)
Sam Elliott via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 18 09:20:09 PDT 2025
================
@@ -401,6 +408,14 @@ def FeatureStdExtZcf
"Compressed Single-Precision Floating-Point Instructions",
[FeatureStdExtF, FeatureStdExtZca]>;
+def FeatureStdExtZclsd
+ : RISCVExtension<1, 0,
+ "Compressed Load/Store pair instructions",
+ [FeatureStdExtZilsd,FeatureStdExtZca]>;
+def HasStdExtZclsd : Predicate<"Subtarget->hasStdExtZclsd() && !Subtarget->hasStdExtZcf()">,
----------------
lenary wrote:
This is not yet resolved, the check here should be exactly the following:
```suggestion
def HasStdExtZclsd : Predicate<"Subtarget->hasStdExtZclsd()">,
```
https://github.com/llvm/llvm-project/pull/131094
More information about the llvm-commits
mailing list