2005-02-20 23:29:23 +00:00
|
|
|
// RUN: %llvmgcc %s -o /dev/null -S
|
2005-04-01 23:16:23 +00:00
|
|
|
// Note:
|
2006-04-20 17:43:41 +00:00
|
|
|
// We fail this on Sparc because the C library seems to be missing complex.h
|
2005-04-01 23:16:23 +00:00
|
|
|
// and the corresponding C99 complex support.
|
|
|
|
//
|
|
|
|
// We could modify the test to use only GCC extensions, but I don't know if
|
|
|
|
// that would change the nature of the test.
|
|
|
|
//
|
2005-11-08 21:11:33 +00:00
|
|
|
// XFAIL: sparc
|
2005-02-20 23:29:23 +00:00
|
|
|
|
2007-11-27 06:17:01 +00:00
|
|
|
#ifdef __CYGWIN__
|
|
|
|
#include <mingw/complex.h>
|
|
|
|
#else
|
|
|
|
#include <complex.h>
|
|
|
|
#endif
|
2005-02-20 23:29:23 +00:00
|
|
|
|
|
|
|
int foo(complex float c) {
|
|
|
|
return creal(c);
|
|
|
|
}
|