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()7 void __vectorcall func_vc() {} // expected-error {{'__vectorcall' calling convention is not supported for this target}}
func_rc()8 void __regcall func_rc() {} // expected-error {{'__regcall' calling convention is not supported for this target}}
funcA()9 void __attribute__((vectorcall)) funcA() {} // expected-error {{'vectorcall' calling convention is not supported for this target}}
funcB()10 void __attribute__((regcall)) funcB() {} // expected-error {{'regcall' calling convention is not supported for this target}}
funcH()11 void __attribute__((ms_abi)) funcH() {} // expected-error {{'ms_abi' calling convention is not supported for this target}}
funcJ()12 void __attribute__((intel_ocl_bicc)) funcJ() {} // expected-error {{'intel_ocl_bicc' calling convention is not supported for this target}}
funcK()13 void __attribute__((swiftcall)) funcK() {} // expected-error {{'swiftcall' calling convention is not supported for this target}}
funcG()14 void __attribute__((pascal)) funcG() {} // expected-error {{'pascal' calling convention is not supported for this target}}
funcL()15 void __attribute__((preserve_most)) funcL() {} // expected-error {{'preserve_most' calling convention is not supported for this target}}
funcM()16 void __attribute__((preserve_all)) funcM() {} // expected-error {{'preserve_all' calling convention is not supported for this target}}
funcD()17 void __attribute__((stdcall)) funcD() {} // expected-error {{'stdcall' calling convention is not supported for this target}}
funcE()18 void __attribute__((fastcall)) funcE() {} // expected-error {{'fastcall' calling convention is not supported for this target}}
funcF()19 void __attribute__((thiscall)) funcF() {} // expected-error {{'thiscall' calling convention is not supported for this target}}
20 #else
21 
func_vc()22 void __vectorcall func_vc() {}
func_rc()23 void __regcall func_rc() {}
funcA()24 void __attribute__((vectorcall)) funcA() {}
funcB()25 void __attribute__((regcall)) funcB() {}
funcH()26 void __attribute__((ms_abi)) funcH() {}
funcJ()27 void __attribute__((intel_ocl_bicc)) funcJ() {}
funcK()28 void __attribute__((swiftcall)) funcK() {}
funcL()29 void __attribute__((preserve_most)) funcL() {}
funcM()30 void __attribute__((preserve_all)) funcM() {}
31 
32 // Same function with different calling conventions. Error with a note pointing to the last decl.
33 void __attribute__((preserve_all)) funcR(); // expected-note {{previous declaration is here}}
34 void __attribute__((preserve_most)) funcR(); // expected-error {{function declared 'preserve_most' here was previously declared 'preserve_all'}}
35 
funcG()36 void __attribute__((pascal)) funcG() {} // expected-warning {{'pascal' calling convention is not supported for this target}}
37 
funcD()38 void __attribute__((stdcall)) funcD() {} // expected-warning {{'stdcall' calling convention is not supported for this target}}
funcE()39 void __attribute__((fastcall)) funcE() {} // expected-warning {{'fastcall' calling convention is not supported for this target}}
funcF()40 void __attribute__((thiscall)) funcF() {} // expected-warning {{'thiscall' calling convention is not supported for this target}}
41 #endif
42 
funcI()43 void __attribute__((sysv_abi)) funcI() {}
funcC()44 void __attribute__((cdecl)) funcC() {}
45