blob: bf595af6993939f7a0a50203cd886b81c44bc01e [file] [log] [blame]
Aaron Ballman82bfa192012-10-02 14:26:08 +00001// RUN: %clang_cc1 %s -fsyntax-only -Wno-unused-value -Wmicrosoft -verify -fms-compatibility -triple x86_64-pc-win32
2int __stdcall f(void); /* expected-warning {{calling convention '__stdcall' ignored for this target}} */
3
4/* This should compile without warning because __stdcall is treated
5as __cdecl in MS compatibility mode for x64 compiles*/
6int __cdecl f(void) {
7 return 0;
8}