Lines Matching full:calling

7 void __vectorcall func_vc() {} // expected-error {{'__vectorcall' calling convention is not support…  in func_vc()
8 void __regcall func_rc() {} // expected-error {{'__regcall' calling convention is not supported for… in func_rc()
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__((preserve_none)) funcN() {} // expected-error {{'preserve_none' calling conventi… in funcN()
19 void __attribute__((stdcall)) funcD() {} // expected-error {{'stdcall' calling convention is not su… in funcD()
20 void __attribute__((fastcall)) funcE() {} // expected-error {{'fastcall' calling convention is not … in funcE()
21 void __attribute__((thiscall)) funcF() {} // expected-error {{'thiscall' calling convention is not … in funcF()
36 // Same function with different calling conventions. Error with a note pointing to the last decl.
40 void __attribute__((pascal)) funcG() {} // expected-warning {{'pascal' calling convention is not su… in funcG()
42 void __attribute__((stdcall)) funcD() {} // expected-warning {{'stdcall' calling convention is not … in funcD()
43 void __attribute__((fastcall)) funcE() {} // expected-warning {{'fastcall' calling convention is no… in funcE()
44 void __attribute__((thiscall)) funcF() {} // expected-warning {{'thiscall' calling convention is no… in funcF()