patches/gcc/4.6.1/000-gcc-bug-54369.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 3049 f0ae157444dc
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>
f@3049
     1
Author: ebotcazou
f@3049
     2
Date: Sun Sep  2 10:37:49 2012
f@3049
     3
New Revision: 190860
f@3049
     4
f@3049
     5
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=190860
f@3049
     6
Log:
f@3049
     7
    PR rtl-optimization/54369
f@3049
     8
    * config/mips/mips.c (mips_reorg): Invoke cleanup_barriers before
f@3049
     9
    calling dbr_schedule.
f@3049
    10
    * config/sparc/sparc.c (sparc_reorg): Likewise.
f@3049
    11
f@3049
    12
Modified:
f@3049
    13
    branches/gcc-4_6-branch/gcc/ChangeLog
f@3049
    14
    branches/gcc-4_6-branch/gcc/config/mips/mips.c
f@3049
    15
    branches/gcc-4_6-branch/gcc/config/sparc/sparc.c
yann@3104
    16
yann@3104
    17
[yann.morin.1998@free.fr: remove the sparc part, it does not apply]
yann@3104
    18
f@3049
    19
---
f@3049
    20
--- gcc-4_6-branch/gcc/config/mips/mips.c	2012/09/02 10:36:54	190859
f@3049
    21
+++ gcc-4_6-branch/gcc/config/mips/mips.c	2012/09/02 10:37:49	190860
f@3049
    22
@@ -15083,7 +15083,10 @@
f@3049
    23
     }
f@3049
    24
 
f@3049
    25
   if (optimize > 0 && flag_delayed_branch)
f@3049
    26
-    dbr_schedule (get_insns ());
f@3049
    27
+    {
f@3049
    28
+      cleanup_barriers ();
f@3049
    29
+      dbr_schedule (get_insns ());
f@3049
    30
+    }
f@3049
    31
   mips_reorg_process_insns ();
f@3049
    32
   if (!TARGET_MIPS16
f@3049
    33
       && TARGET_EXPLICIT_RELOCS