Date: Wed, 7 Jan 2004 20:10:19 -0800 (PST) From: Ryan Sommers <ryans@gamersimpact.com> To: standards@FreeBSD.org Subject: Re: i386/105: Distributed libm (msun) has non-standard error handling. Message-ID: <200401080410.i084AJDS097132@freefall.freebsd.org>
index | next in thread | raw e-mail
The following reply was made to PR i386/105; it has been noted by GNATS.
From: Ryan Sommers <ryans@gamersimpact.com>
To: freebsd-gnats-submit@FreeBSD.org
Cc:
Subject: Re: i386/105: Distributed libm (msun) has non-standard error handling.
Date: Wed, 07 Jan 2004 22:05:27 -0600
It looks like this problem has since been resolved. I believe this PR
can be closed.
ryans@lilshadow(~/src):cat test.c
#include <stdio.h>
#include <math.h>
main ()
{
printf ("acos = %g\n", acos (-2.0));
printf ("pow = %g\n", pow(3, 1000001));
}
ryans@lilshadow(~/src):gcc -lm -o test test.c
ryans@lilshadow(~/src):./test
acos = nan
pow = inf
ryans@lilshadow(~/src):
--
Ryan Sommers
ryans@gamersimpact.com
home |
help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200401080410.i084AJDS097132>
