[clang] [lld] [llvm] [RISCV] Support .note.gnu.property for enable Zicfiss and Zicfilp extension (PR #77414)

Craig Topper via cfe-commits cfe-commits at lists.llvm.org
Fri May 10 10:30:07 PDT 2024


================
@@ -468,6 +468,13 @@ static void checkOptions() {
       error("-z pauth-report only supported on AArch64");
   }
 
+  if (config->emachine != EM_RISCV) {
+    if (config->zZicfilpReport != "none")
+      error("-z zicfilip-report only support on RISCV32/RISCV64");
----------------
topperc wrote:

support -> supported

RISCV32/RISCV64 -> RISC-V

https://github.com/llvm/llvm-project/pull/77414


More information about the cfe-commits mailing list