[llvm-commits] [llvm] r44353 - /llvm/trunk/test/CFrontend/2005-02-20-AggregateSAVEEXPR.c

Eric Christopher echristo at apple.com
Mon Nov 26 22:22:29 PST 2007



> //
> // XFAIL: sparc
>
> -#include <complex.h>
> +#ifdef __CYGWIN__
> +  #include <mingw/complex.h>
> +#else
> +  #include <complex.h>
> +#endif


IIRC this isn't quite right, you can't depend on mingw with cygwin. I  
think cygwin
should have a complex.h, if you want to make this work for mingw then
you should use __MINGW32__.

-eric



More information about the llvm-commits mailing list