1 // RUN: %clang_cc1 %s -triple x86_64-scei-ps4 -DPS4 -fsyntax-only -verify 2 // RUN: %clang_cc1 %s -triple x86_64-unknown-linux-gnu -fsyntax-only -verify 3 4 #ifdef PS4 5 6 // PS4 does not support these. func_vc()7void __vectorcall func_vc() {} // expected-error {{'__vectorcall' calling convention is not supported for this target}} func_rc()8void __regcall func_rc() {} // expected-error {{'__regcall' calling convention is not supported for this target}} funcA()9void __attribute__((vectorcall)) funcA() {} // expected-error {{'vectorcall' calling convention is not supported for this target}} funcB()10void __attribute__((regcall)) funcB() {} // expected-error {{'regcall' calling convention is not supported for this target}} funcH()11void __attribute__((ms_abi)) funcH() {} // expected-error {{'ms_abi' calling convention is not supported for this target}} funcJ()12void __attribute__((intel_ocl_bicc)) funcJ() {} // expected-error {{'intel_ocl_bicc' calling convention is not supported for this target}} funcK()13void __attribute__((swiftcall)) funcK() {} // expected-error {{'swiftcall' calling convention is not supported for this target}} funcKK()14void __attribute__((swiftasynccall)) funcKK() {} // expected-error {{'swiftasynccall' calling convention is not supported for this target}} funcG()15void __attribute__((pascal)) funcG() {} // expected-error {{'pascal' calling convention is not supported for this target}} funcL()16void __attribute__((preserve_most)) funcL() {} // expected-error {{'preserve_most' calling convention is not supported for this target}} funcM()17void __attribute__((preserve_all)) funcM() {} // expected-error {{'preserve_all' calling convention is not supported for this target}} funcD()18void __attribute__((stdcall)) funcD() {} // expected-error {{'stdcall' calling convention is not supported for this target}} funcE()19void __attribute__((fastcall)) funcE() {} // expected-error {{'fastcall' calling convention is not supported for this target}} funcF()20void __attribute__((thiscall)) funcF() {} // expected-error {{'thiscall' calling convention is not supported for this target}} 21 #else 22 func_vc()23void __vectorcall func_vc() {} func_rc()24void __regcall func_rc() {} funcA()25void __attribute__((vectorcall)) funcA() {} funcB()26void __attribute__((regcall)) funcB() {} funcH()27void __attribute__((ms_abi)) funcH() {} funcJ()28void __attribute__((intel_ocl_bicc)) funcJ() {} funcK()29void __attribute__((swiftcall)) funcK() {} funcKK()30void __attribute__((swiftasynccall)) funcKK() {} funcL()31void __attribute__((preserve_most)) funcL() {} funcM()32void __attribute__((preserve_all)) funcM() {} 33 34 // Same function with different calling conventions. Error with a note pointing to the last decl. 35 void __attribute__((preserve_all)) funcR(); // expected-note {{previous declaration is here}} 36 void __attribute__((preserve_most)) funcR(); // expected-error {{function declared 'preserve_most' here was previously declared 'preserve_all'}} 37 funcG()38void __attribute__((pascal)) funcG() {} // expected-warning {{'pascal' calling convention is not supported for this target}} 39 funcD()40void __attribute__((stdcall)) funcD() {} // expected-warning {{'stdcall' calling convention is not supported for this target}} funcE()41void __attribute__((fastcall)) funcE() {} // expected-warning {{'fastcall' calling convention is not supported for this target}} funcF()42void __attribute__((thiscall)) funcF() {} // expected-warning {{'thiscall' calling convention is not supported for this target}} 43 #endif 44 funcI()45void __attribute__((sysv_abi)) funcI() {} funcC()46void __attribute__((cdecl)) funcC() {} 47