summaryrefslogtreecommitdiffstats
path: root/test/input/Function-calling-convention-ms-annotate.cxx
blob: 668fcb0a6ea1090864c93258f57ff179055ee23e (plain)
1
2
3
4
5
6
7
8
__attribute__((annotate("an annotation"))) void __cdecl start(
  void(__cdecl*)());
__attribute__((annotate("an annotation"))) void __stdcall start(
  void(__stdcall*)());
__attribute__((annotate("an annotation"))) void __fastcall start(
  void(__fastcall*)());
__attribute__((annotate("an annotation"))) void __thiscall start(
  void(__thiscall*)());