From 0ce0ead5aa3ee054dc69f6b670d49602f90887ad Mon Sep 17 00:00:00 2001 From: David Schultz Date: Sun, 9 Dec 2007 19:48:57 +0000 Subject: [PATCH] Fix handling of subnormals on i386/ia64/amd64. PR: 85080 --- lib/libc/gdtoa/_ldtoa.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/libc/gdtoa/_ldtoa.c b/lib/libc/gdtoa/_ldtoa.c index 952ca98362f6..60c6b223bd6e 100644 --- a/lib/libc/gdtoa/_ldtoa.c +++ b/lib/libc/gdtoa/_ldtoa.c @@ -88,9 +88,7 @@ __ldtoa(long double *ld, int mode, int ndigits, int *decpt, int *sign, break; case FP_SUBNORMAL: kind = STRTOG_Denormal; -#ifdef LDBL_IMPLICIT_NBIT be++; -#endif break; case FP_INFINITE: kind = STRTOG_Infinite;