xref: /minix3/external/bsd/llvm/dist/clang/test/Sema/MicrosoftCompatibility-x64.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 %s -fsyntax-only -Wno-unused-value -Wmicrosoft -verify -fms-compatibility -triple x86_64-pc-win32
2 int __stdcall f(void); /* expected-warning {{calling convention '__stdcall' ignored for this target}} */
3 
4 /* This should compile without warning because __stdcall is treated
5 as __cdecl in MS compatibility mode for x64 compiles*/
f(void)6 int __cdecl f(void) {
7   return 0;
8 }
9