cfarm

On 3/27/09, Andrew Pinski <[email protected]> wrote:
> On Wed, Mar 25, 2009 at 3:23 AM, Martin Guy <[email protected]> wrote:
>  > but none of the soft-float targets in the farm seem to work.
>  > - Alpha gives ICE (set (reg:DF 75) (float_extend:DF (reg:SF 74)))
>  > - HPPA and x86 don't have softfloat libraries installed (__extendsfdf2
>  > not found)
>  > - MIPS -msoft-float gives all results as nan
>
> PPC by default multi libs for soft float.

Oh dear, its softfloat seems broken too.

#include <stdio.h>
main (void)
{
        double max = -99999.0, min = 99999.0 ;

        printf ("min : %12.4f    max : %12.4f\n", min, max) ;
}

$ cc -msoft-float c.c
$ ./a.out
min :       0.0000    max :          nan

Am I doing something stupid on MIPS and PPC, like linking to a printf
that expects its args in FP registers?

_______________________________________________
Gcc-cfarm-users mailing list
[email protected]
https://mail.gna.org/listinfo/gcc-cfarm-users

Reply via email to