[clang] [llvm] [RISCV] CodeGen of RVE and ilp32e/lp64e ABIs (PR #76777)
Nemanja Ivanovic via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 9 09:08:13 PST 2024
================
@@ -17,6 +17,13 @@ def HasStdExtZicsr : Predicate<"Subtarget->hasStdExtZicsr()">,
AssemblerPredicate<(all_of FeatureStdExtZicsr),
"'Zicsr' (CSRs)">;
+def FeatureStdExtI
+ : SubtargetFeature<"i", "HasStdExtI", "true",
+ "'I' (Base Integer Instruction Set)">;
+def HasStdExtI : Predicate<"Subtarget->hasStdExtI()">,
+ AssemblerPredicate<(all_of FeatureStdExtI),
+ "'I' (Base Integer Instruction Set)">;
+
----------------
nemanjai wrote:
Just out of curiosity, why was this added in this patch?
https://github.com/llvm/llvm-project/pull/76777
More information about the llvm-commits
mailing list