xref: /minix3/external/bsd/llvm/dist/clang/test/Modules/on-demand-macros.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1// RUN: rm -rf %t
2// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -F %S/Inputs -DFOO_RETURNS_INT_PTR -verify %s
3// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -F %S/Inputs -verify %s
4// expected-no-diagnostics
5
6@import CmdLine;
7
8void test() {
9#ifdef FOO_RETURNS_INT_PTR
10  int *ip = foo();
11#else
12  float *fp = foo();
13#endif
14}
15