[clang] [llvm] [RISCV][FMV] Support target_clones (PR #85786)

Jessica Clarke via cfe-commits cfe-commits at lists.llvm.org
Wed Apr 10 11:22:56 PDT 2024


================
@@ -0,0 +1,14 @@
+// RUN: not %clang_cc1 -triple riscv64-linux-gnu -target-feature +i -S -emit-llvm -o - %s 2>&1 | FileCheck %s --check-prefix=CHECK-UNSUPPORT-EXT
+// RUN: not %clang_cc1 -triple riscv64 -target-feature +i -S -emit-llvm -o - %s 2>&1 | FileCheck %s --check-prefix=CHECK-UNSUPPORT-OS
+
+// CHECK-UNSUPPORT-EXT: error: Unsupport 'zicsr' for _riscv_hwprobe
+__attribute__((target_clones("default", "arch=+zicsr"))) int foo1(void) {
+  return 1;
+}
+
+// CHECK-UNSUPPORT-OS: error: Only Linux support _riscv_hwprobe
----------------
jrtc27 wrote:

Yes, that seems fine

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


More information about the cfe-commits mailing list