From ac9e01a6a230bf998ca712c64ee24a61df78baa3 Mon Sep 17 00:00:00 2001 From: nsz Date: Mon, 12 Mar 2012 23:01:00 +0100 Subject: [PATCH] update TODO --- TODO | 2 -- test/tgmath/t.c | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/TODO b/TODO index 8e432d8..f2c0cfc 100644 --- a/TODO +++ b/TODO @@ -21,8 +21,6 @@ scalbf: scalb is buggy, do we need the *f and *l version? scalbn: needs a rewrite: signed int problems, wrong <-50000 check -__ldexp_cexp: - only complex in math/, move to cmath? j0l, y0l,..: declare long double bessel functions in math.h? uniform inexact exception raising: 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)); -- 2.20.1