1*f4a2713aSLionel Sambuc// RUN: rm -rf %t 2*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -F %S/Inputs -DFOO_RETURNS_INT_PTR -verify %s 3*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -F %S/Inputs -verify %s 4*f4a2713aSLionel Sambuc// expected-no-diagnostics 5*f4a2713aSLionel Sambuc 6*f4a2713aSLionel Sambuc@import CmdLine; 7*f4a2713aSLionel Sambuc 8*f4a2713aSLionel Sambucvoid test() { 9*f4a2713aSLionel Sambuc#ifdef FOO_RETURNS_INT_PTR 10*f4a2713aSLionel Sambuc int *ip = foo(); 11*f4a2713aSLionel Sambuc#else 12*f4a2713aSLionel Sambuc float *fp = foo(); 13*f4a2713aSLionel Sambuc#endif 14*f4a2713aSLionel Sambuc} 15