2011-10-17 22:55:37 +08:00
|
|
|
// RUN: rm -rf %t
|
2013-02-08 03:01:24 +08:00
|
|
|
// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -F %S/Inputs -DFOO_RETURNS_INT_PTR -verify %s
|
|
|
|
// RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -F %S/Inputs -verify %s
|
2012-10-19 20:44:48 +08:00
|
|
|
// expected-no-diagnostics
|
2011-10-17 22:55:37 +08:00
|
|
|
|
2012-12-12 06:11:52 +08:00
|
|
|
@import CmdLine;
|
2011-10-17 22:55:37 +08:00
|
|
|
|
|
|
|
void test() {
|
|
|
|
#ifdef FOO_RETURNS_INT_PTR
|
|
|
|
int *ip = foo();
|
|
|
|
#else
|
|
|
|
float *fp = foo();
|
|
|
|
#endif
|
|
|
|
}
|