summaryrefslogtreecommitdiffstats
path: root/clang/test/Sema/stdcall-fastcall.c
blob: 3a222dd4bc250ae8027e280dd9fbfc4c67bd3574 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: clang -fsyntax-only -verify %s

// CC qualifier can be applied only to functions
int __attribute__((stdcall)) var1; // expected-warning{{'stdcall' attribute only applies to function types}}
int __attribute__((fastcall)) var2; // expected-warning{{'fastcall' attribute only applies to function types}}

// Different CC qualifiers are not compatible
void __attribute__((stdcall, fastcall)) foo3(); // expected-error{{stdcall and fastcall attributes are not compatible}}

// FIXME: Something went wrong recently and diagnostics is not generated anymore
void __attribute__((stdcall)) foo4();
void __attribute__((fastcall)) foo4();
OpenPOWER on IntegriCloud