[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / PCH / single-token-macro.c
blobaa02f65f78b14fb3cb37d7ff3b9044b8aa3ac98d
1 // rdar://10588825
3 // Test this without pch.
4 // RUN: %clang_cc1 %s -include %s -verify -fsyntax-only
6 // Test with pch.
7 // RUN: %clang_cc1 %s -emit-pch -o %t
8 // RUN: %clang_cc1 %s -include-pch %t -verify -fsyntax-only
10 // expected-no-diagnostics
12 #ifndef HEADER
13 #define HEADER
15 #ifdef __stdcall
16 // __stdcall is defined as __attribute__((__stdcall__)) for targeting mingw32.
17 #undef __stdcall
18 #endif
20 #define __stdcall
21 #define STDCALL __stdcall
23 void STDCALL Foo(void);
25 #else
27 void STDCALL Foo(void)
31 #endif