X-Git-Url: http://nsz.repo.hu/git/?p=libm;a=blobdiff_plain;f=test%2Ftgmath%2Ft.c;h=b89a6645ef627d12625f6e879d30f2c94756edc6;hp=b8c35caaec5cfe4f147ce4859dad2256976e60e6;hb=ac9e01a6a230bf998ca712c64ee24a61df78baa3;hpb=0376d44a890fea261506f1fc63833e7a686dca19 diff --git a/test/tgmath/t.c b/test/tgmath/t.c index b8c35ca..b89a664 100644 --- a/test/tgmath/t.c +++ b/test/tgmath/t.c @@ -12,7 +12,7 @@ int main() long double complex dc = sin(1.0+0*I); long double complex fc = sin(1.0f+0*I); - long double complex lc = sin(1.0l+0*I); +// long double complex lc = sin(1.0l+0*I); printf("i %2u %La\n", sizeof sin(1), i); printf("d %2u %La\n", sizeof sin(1.0), d); @@ -21,7 +21,7 @@ int main() printf("dc %2u %La %La\n", sizeof sin(1.0+0*I), creal(dc), cimag(dc)); printf("fc %2u %La %La\n", sizeof sin(1.0f+0*I), creal(fc), cimag(fc)); - printf("lc %2u %La %La\n", sizeof sin(1.0l+0*I), creal(lc), cimag(lc)); +// printf("lc %2u %La %La\n", sizeof sin(1.0l+0*I), creal(lc), cimag(lc)); printf("sizeof pow(I,1) = %2u\n", sizeof pow(I,1)); printf("sizeof pow(I,1.0f) = %2u\n", sizeof pow(I,1.0f));