aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/MicrosoftCompatibility-x64.c
blob: bf595af6993939f7a0a50203cd886b81c44bc01e (plain) (blame)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 %s -fsyntax-only -Wno-unused-value -Wmicrosoft -verify -fms-compatibility -triple x86_64-pc-win32
int __stdcall f(void); /* expected-warning {{calling convention '__stdcall' ignored for this target}} */

/* This should compile without warning because __stdcall is treated
as __cdecl in MS compatibility mode for x64 compiles*/
int __cdecl f(void) {
  return 0;
}