Lines Matching refs:__attribute__
9 void __attribute__((vectorcall)) funcA() {} // expected-error {{'vectorcall' calling convention is … in funcA()
10 void __attribute__((regcall)) funcB() {} // expected-error {{'regcall' calling convention is not su… in funcB()
11 void __attribute__((ms_abi)) funcH() {} // expected-error {{'ms_abi' calling convention is not supp… in funcH()
12 void __attribute__((intel_ocl_bicc)) funcJ() {} // expected-error {{'intel_ocl_bicc' calling conven… in funcJ()
13 void __attribute__((swiftcall)) funcK() {} // expected-error {{'swiftcall' calling convention is no… in funcK()
14 void __attribute__((swiftasynccall)) funcKK() {} // expected-error {{'swiftasynccall' calling conve… in funcKK()
15 void __attribute__((pascal)) funcG() {} // expected-error {{'pascal' calling convention is not supp… in funcG()
16 void __attribute__((preserve_most)) funcL() {} // expected-error {{'preserve_most' calling conventi… in funcL()
17 void __attribute__((preserve_all)) funcM() {} // expected-error {{'preserve_all' calling convention… in funcM()
18 void __attribute__((stdcall)) funcD() {} // expected-error {{'stdcall' calling convention is not su… in funcD()
19 void __attribute__((fastcall)) funcE() {} // expected-error {{'fastcall' calling convention is not … in funcE()
20 void __attribute__((thiscall)) funcF() {} // expected-error {{'thiscall' calling convention is not … in funcF()
25 void __attribute__((vectorcall)) funcA() {} in funcA()
26 void __attribute__((regcall)) funcB() {} in funcB()
27 void __attribute__((ms_abi)) funcH() {} in funcH()
28 void __attribute__((intel_ocl_bicc)) funcJ() {} in funcJ()
29 void __attribute__((swiftcall)) funcK() {} in funcK()
30 void __attribute__((swiftasynccall)) funcKK() {} in funcKK()
31 void __attribute__((preserve_most)) funcL() {} in funcL()
32 void __attribute__((preserve_all)) funcM() {} in funcM()
35 void __attribute__((preserve_all)) funcR(); // expected-note {{previous declaration is here}}
36 void __attribute__((preserve_most)) funcR(); // expected-error {{function declared 'preserve_most' …
38 void __attribute__((pascal)) funcG() {} // expected-warning {{'pascal' calling convention is not su… in funcG()
40 void __attribute__((stdcall)) funcD() {} // expected-warning {{'stdcall' calling convention is not … in funcD()
41 void __attribute__((fastcall)) funcE() {} // expected-warning {{'fastcall' calling convention is no… in funcE()
42 void __attribute__((thiscall)) funcF() {} // expected-warning {{'thiscall' calling convention is no… in funcF()
45 void __attribute__((sysv_abi)) funcI() {} in funcI()
46 void __attribute__((cdecl)) funcC() {} in funcC()