Add PR check to suggest alternatives to using undef (#118506)
[llvm-project.git] / clang / test / Modules / on-demand-macros.m
blobc33d5ed11e53760e84e8c6f7b9572ed898b3ada4
1 // RUN: rm -rf %t
2 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -F %S/Inputs -DFOO_RETURNS_INT_PTR -verify %s
3 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -F %S/Inputs -verify %s
4 // expected-no-diagnostics
6 @import CmdLine;
8 void test(void) {
9 #ifdef FOO_RETURNS_INT_PTR
10   int *ip = foo();
11 #else
12   float *fp = foo();
13 #endif