brintos

brintos / llvm-project-archived public Read only

0
0
Text · 386 B · c33d5ed Raw
15 lines · plain
1// RUN: rm -rf %t2// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -F %S/Inputs -DFOO_RETURNS_INT_PTR -verify %s3// RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -F %S/Inputs -verify %s4// expected-no-diagnostics5 6@import CmdLine;7 8void test(void) {9#ifdef FOO_RETURNS_INT_PTR10  int *ip = foo();11#else12  float *fp = foo();13#endif14}15