blob: 4531eb2a81c8c6d715f594ce80c80a469b21a40b [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Anton Korobeynikov3112c8772008-12-26 00:51:21 +00002
3// CC qualifier can be applied only to functions
John McCallab26cfa2010-02-05 21:31:56 +00004int __attribute__((stdcall)) var1; // expected-warning{{'stdcall' only applies to function types; type here is 'int'}}
5int __attribute__((fastcall)) var2; // expected-warning{{'fastcall' only applies to function types; type here is 'int'}}
Anton Korobeynikov3112c8772008-12-26 00:51:21 +00006
7// Different CC qualifiers are not compatible
John McCall3882ace2011-01-05 12:14:39 +00008void __attribute__((stdcall, fastcall)) foo3(void); // expected-error{{fastcall and stdcall attributes are not compatible}}
John McCallab26cfa2010-02-05 21:31:56 +00009void __attribute__((stdcall)) foo4(); // expected-note{{previous declaration is here}}
10void __attribute__((fastcall)) foo4(void); // expected-error{{function declared 'fastcall' here was previously declared 'stdcall'}}
Argyrios Kyrtzidis4e52cc72011-01-25 23:16:40 +000011
12// rdar://8876096
13void rdar8876096foo1(int i, int j) __attribute__((fastcall, cdecl)); // expected-error {{not compatible}}
14void rdar8876096foo2(int i, int j) __attribute__((fastcall, stdcall)); // expected-error {{not compatible}}
15void rdar8876096foo3(int i, int j) __attribute__((fastcall, regparm(2))); // expected-error {{not compatible}}
16void rdar8876096foo4(int i, int j) __attribute__((stdcall, cdecl)); // expected-error {{not compatible}}
17void rdar8876096foo5(int i, int j) __attribute__((stdcall, fastcall)); // expected-error {{not compatible}}
18void rdar8876096foo6(int i, int j) __attribute__((cdecl, fastcall)); // expected-error {{not compatible}}
19void rdar8876096foo7(int i, int j) __attribute__((cdecl, stdcall)); // expected-error {{not compatible}}
20void rdar8876096foo8(int i, int j) __attribute__((regparm(2), fastcall)); // expected-error {{not compatible}}