We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e761914 commit 5b0148aCopy full SHA for 5b0148a
clang/test/CodeGen/attr-target-version-riscv-invalid.c
@@ -0,0 +1,13 @@
1
+// RUN: not %clang_cc1 -triple riscv64 -target-feature +i -emit-llvm -o - %s 2>&1 | FileCheck %s --check-prefix=CHECK-UNSUPPORT-OS
2
+
3
+// CHECK-UNSUPPORT-OS: error: target_clones is currently only supported on Linux
4
+__attribute__((target_version("default"))) int foo(void) {
5
+ return 2;
6
+}
7
8
+__attribute__((target_version("arch=+c"))) int foo(void) {
9
10
11
12
13
+int bar() { return foo(); }
0 commit comments