blob: 2b8c5456eb65dec35b650446ccc7db0f2e18fb3f [file] [log] [blame]
Douglas Gregor05edf662011-10-17 14:55:37 +00001// RUN: rm -rf %t
Douglas Gregor94ad28b2012-01-03 18:24:14 +00002// RUN: %clang_cc1 -fmodules -fmodule-cache-path %t -F %S/Inputs -DFOO_RETURNS_INT_PTR -verify %s
3// RUN: %clang_cc1 -fmodules -fmodule-cache-path %t -F %S/Inputs -verify %s
Douglas Gregor05edf662011-10-17 14:55:37 +00004
Ted Kremenek32ad2ee2012-03-01 22:07:04 +00005@__experimental_modules_import CmdLine;
Douglas Gregor05edf662011-10-17 14:55:37 +00006
7void test() {
8#ifdef FOO_RETURNS_INT_PTR
9 int *ip = foo();
10#else
11 float *fp = foo();
12#endif
13}