Lines Matching refs:stdcall
6 // expected-error@+5 {{function declared 'stdcall' here was previously declared without calling convention}}
8 // expected-error@+5 {{function declared 'stdcall' here was previously declared without calling convention}}
11 void __attribute__((stdcall)) nonvariadic1(int a, int b, int c);
13 void __attribute__((stdcall)) nonvariadic2(int a, int b, int c) { }
15 // expected-warning@+2 {{stdcall calling convention ignored on variadic function}}
17 void __attribute__((stdcall)) variadic(int a, ...);
21 // expected-error@+3 {{redeclaration of 'a' with a different type: 'void ((*))(int, int) __attribute__((cdecl))' vs 'void (*)(int, int) __attribute__((stdcall))'}}
31 // expected-error@+3 {{redeclaration of 'c' with a different type: 'void ((*))(int, int) __attribute__((stdcall))' vs 'void (*)(int, int)'}}
34 __attribute__((stdcall)) extern void (*c)(int, int);
36 // expected-warning@+2 {{stdcall calling convention ignored on variadic function}}
38 __attribute__((stdcall)) extern void (*d)(int, ...);