1 // RUN: %clang_cc1 -triple x86_64-windows -fsyntax-only -verify %s
2 // RUN: %clang_cc1 -triple x86_64-linux -fsyntax-only -verify -emit-llvm-only -DCHECK_ALIASES %s
3 // RUN: %clang_cc1 -triple x86_64-linux -fsyntax-only -verify -emit-llvm-only %s
7 void bar(void) __attribute__((ifunc("foo")));
8 // expected-warning@-1 {{unknown attribute 'ifunc' ignored}}
11 #if defined(CHECK_ALIASES)
13 void f1(void) __attribute__((ifunc("f1_ifunc")));
14 // expected-error@-1 {{ifunc must point to a defined function}}
15 // expected-note@-2 {{must refer to its mangled name}}
17 void *f2_a(void) __attribute__((alias("f2_b")));
18 void *f2_b(void) __attribute__((ifunc("f2_a")));
19 // expected-error@-1 {{ifunc definition is part of a cycle}}
21 void *f3_a(void) __attribute__((ifunc("f3_b")));
22 // expected-warning@-1 {{ifunc will always resolve to f3_c even if weak definition of f3_b is overridden}}
23 void *f3_b(void) __attribute__((weak
, alias("f3_c")));
24 void *f3_c(void) { return 0; }
26 void f4_ifunc(void) {}
27 void f4(void) __attribute__((ifunc("f4_ifunc")));
28 // expected-error@-1 {{ifunc resolver function must return a pointer}}
31 void f5(void) __attribute__((ifunc("f5_resolver_gvar")));
32 // expected-error@-1 {{ifunc must point to a defined function}}
34 void *f6_resolver_resolver(void) { return 0; }
35 void *f6_resolver(void) __attribute__((ifunc("f6_resolver_resolver")));
36 void f6(void) __attribute__((ifunc("f6_resolver")));
37 // expected-error@-1 {{ifunc must point to a defined function}}
40 void f1a(void) __asm("f1");
42 // expected-note@-1 {{previous definition is here}}
43 void f1(void) __attribute__((ifunc("f1_ifunc")));
44 // expected-error@-1 {{definition with same mangled name 'f1' as another definition}}
45 void *f1_ifunc(void) { return 0; }
47 void *f6_ifunc(int i
);
48 void __attribute__((ifunc("f6_ifunc"))) f6(void) {}
49 // expected-error@-1 {{definition 'f6' cannot also be an ifunc}}