This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: nogc.cc & darwin
Bryce McKinlay wrote:
> >>I bet my recent builtin function call patch is broken :-(
> >>
> >
> >builtin.c
> >static tree
> >sqrt_builtin (method_return_type, method_arguments)
> > tree method_return_type, method_arguments;
> >{
> > /* FIXME: this assumes that jdouble and double are the same. */
> > tree fn = built_in_decls[BUILT_IN_SQRTF];
> >
> >Should it be here BUILT_IN_SQRT?
> >
>
> I think so - I suspect sqrt() can be used in place of sqrtf() but not
> vice-versa. I notice glibc doesn't declare any sqrtf() even though it
> still implements it.
I give it a try tonight, means now ;-)
Let you know tomorrow.
Thanks,
Andreas