Kelly Wilson wrote: > Just wondering if CodeGen/mandel.c and CodeGen/array.c are supposed to > fail from the testsuite (maybe there is a list of possible/probable fail > cases?).
About CodeGen/mandel.c, you just need to change : #if defined(__FreeBSD__) || defined(__OpenBSD__) #include <complex.h> #elif defined(__APPLE__) #include <math.h> #else #include <tgmath.h> #endif to this : #include <math.h> __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com _______________________________________________ cfe-dev mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev
