blob: d179122c1b18dc89ad6900ca6b75cda0db1c6879 [file] [log] [blame]
Douglas Gregor71129d52011-10-17 14:55:37 +00001// RUN: rm -rf %t
Richard Smith47972af2015-06-16 00:08:24 +00002// 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
Andy Gibbsc6e68da2012-10-19 12:44:48 +00004// expected-no-diagnostics
Douglas Gregor71129d52011-10-17 14:55:37 +00005
Douglas Gregorc50d4922012-12-11 22:11:52 +00006@import CmdLine;
Douglas Gregor71129d52011-10-17 14:55:37 +00007
8void test() {
9#ifdef FOO_RETURNS_INT_PTR
10 int *ip = foo();
11#else
12 float *fp = foo();
13#endif
14}