This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: egcs-1.1 release issues
- To: law at cygnus dot com, Richard Henderson <rth at cygnus dot com>
- Subject: Re: egcs-1.1 release issues
- From: Richard Henderson <rth at cygnus dot com>
- Date: Fri, 28 Aug 1998 23:15:26 -0700
- Cc: egcs at cygnus dot com
- References: <19980828201015.E15907@dot.cygnus.com> <14777.904370856@hurl.cygnus.com>
- Reply-To: Richard Henderson <rth at cygnus dot com>
On Sat, Aug 29, 1998 at 12:07:36AM -0600, Jeffrey A Law wrote:
> > * complex float (see complex-5),
> Nothing new here :( I didn't know glibc depended on the complex
> extensions. Sigh. I guess we really need to fix them someday.
ISO C9x adds a whole suite of complex number functions.
> > * exp10 accuracy (which is currently implemented in terms
> > of exp, and so is not surprising).
> So would you classify this as an egcs problem or glibc problem?
double __ieee754_exp10 (double arg)
{
return __ieee754_exp (M_LN10 * arg);
}
I would have to say glibc. ;-)
r~