This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: [COMMITTED] Use C99 math macros
- From: Joseph Myers <joseph at codesourcery dot com>
- To: Wilco Dijkstra <wdijkstr at arm dot com>
- Cc: GNU C Library <libc-alpha at sourceware dot org>
- Date: Wed, 3 Jun 2015 15:04:12 +0000
- Subject: Re: [COMMITTED] Use C99 math macros
- Authentication-results: sourceware.org; auth=none
- References: <000201d09e0d$fdbc6490$f9352db0$ at com>
On Wed, 3 Jun 2015, Wilco Dijkstra wrote:
> diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-finite.c b/sysdeps/ieee754/ldbl-opt/nldbl-finite.c
> - return __finite (x);
> + return finite (x);
Are you sure about this change? "finite", as opposed to isfinite, is a
non-type-generic BSD function; I'd expect this to cause the "finite"
function name to be used for the call instead of __finite. (Using
isfinite here should be fine.)
--
Joseph S. Myers
joseph@codesourcery.com