I have constructed a minimal test program that reproduces the bug:
Compile with: gcc-4.1 -c -O4 -o test.o test.c
#include
void testit(double complex* t, double* b)
{
b[0] = t[0]==0.0?0.0:-t[0];
}
main(void)
{
static double complex k = 5;
static double b;
testit(&k,&b);
}
The follow
Hi,
Forgot to tell you that gcc-4.0 works fine on the same file.
Cheers,
//Anders
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
2 matches
Mail list logo