Author: sheng
Date: Tue Nov 27 00:17:01 2007
New Revision: 44353
URL: http://llvm.org/viewvc/llvm-project?rev=44353&view=rev
Log:
Make this testcase compatible with CYGWIN.
Modified:
llvm/trunk/test/CFrontend/2005-02-20-AggregateSAVEEXPR.c
Modified: llvm/trunk/test/CFrontend/2005-02-20-AggregateSAVEEXPR.c
URL:
http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CFrontend/2005-02-20-AggregateSAVEEXPR.c?rev=44353&r1=44352&r2=44353&view=diff
==============================================================================
--- llvm/trunk/test/CFrontend/2005-02-20-AggregateSAVEEXPR.c (original)
+++ llvm/trunk/test/CFrontend/2005-02-20-AggregateSAVEEXPR.c Tue Nov 27
00:17:01 2007
@@ -8,7 +8,11 @@
//
// XFAIL: sparc
-#include <complex.h>
+#ifdef __CYGWIN__
+ #include <mingw/complex.h>
+#else
+ #include <complex.h>
+#endif
int foo(complex float c) {
return creal(c);
_______________________________________________
llvm-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits