patches/gcc/4.2.4/270-soft-float.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Wed Jun 25 23:33:01 2014 +0200 (2014-06-25)
changeset 3325 069f43a215cc
parent 687 b2b6b1d46aa1
permissions -rw-r--r--
all: fix wildcard to work with make-4.x

In make-3.8x, the $(wildacrd) function would sort the entries,
while in make-4.x, it would just return the entries in any
unpredictable order [*]

Use the $(sort) function to get reproducible behaviour.

[*] Well, most probably the roder the entries appear when read
from readdir()

Reported-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Tested-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
     1 diff -uNpr gcc-4.2.1_orig/gcc/config/rs6000/darwin-ldouble.c gcc-4.2.1/gcc/config/rs6000/darwin-ldouble.c
     2 --- gcc-4.2.1_orig/gcc/config/rs6000/darwin-ldouble.c	2007-03-05 11:54:00.000000000 -0500
     3 +++ gcc-4.2.1/gcc/config/rs6000/darwin-ldouble.c	2008-01-31 17:51:24.000000000 -0500
     4 @@ -70,6 +70,8 @@ Software Foundation, 51 Franklin Street,
     5     but GCC currently generates poor code when a union is used to turn
     6     a long double into a pair of doubles.  */
     7  
     8 +#if defined (_SOFT_FLOAT) && defined (__LONG_DOUBLE_128__)
     9 +
    10  long double __gcc_qadd (double, double, double, double);
    11  long double __gcc_qsub (double, double, double, double);
    12  long double __gcc_qmul (double, double, double, double);
    13 @@ -219,8 +221,6 @@ __gcc_qdiv (double a, double b, double c
    14    return z.ldval;
    15  }
    16  
    17 -#if defined (_SOFT_FLOAT) && defined (__LONG_DOUBLE_128__)
    18 -
    19  long double __gcc_qneg (double, double);
    20  int __gcc_qeq (double, double, double, double);
    21  int __gcc_qne (double, double, double, double);