patches/gcc/4.7.0/000-gcc-bug-54369.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Tue Mar 11 22:11:43 2014 +0100 (2014-03-11)
changeset 3293 e11a8a2e225d
permissions -rw-r--r--
comptools: do not force build of make-3.81 unless really needed

On systems with make-3.82, we forcibly force the build and the use
of make-3.81

But some newer tools break when building with make-3.81. For example,
eglibc-3.18 breaks.

Introduce a new blind options that tools may select if they require
make-3.81. If the system does not have make-3.81, and this option is
selected, then we force the build of make-3.81. Otherwise, we leave
it to the user to decide on his own.

Note that no component selects this option for now. It will come in
later patches as we find them.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
f@3049
     1
Author: ebotcazou
f@3049
     2
Date: Sun Sep  2 10:36:54 2012
f@3049
     3
New Revision: 190859
f@3049
     4
f@3049
     5
URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=190859
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_7-branch/gcc/ChangeLog
f@3049
    14
    branches/gcc-4_7-branch/gcc/config/mips/mips.c
f@3049
    15
    branches/gcc-4_7-branch/gcc/config/sparc/sparc.c
f@3049
    16
---
f@3049
    17
--- gcc-4_7-branch/gcc/config/mips/mips.c	2012/09/02 10:36:27	190858
f@3049
    18
+++ gcc-4_7-branch/gcc/config/mips/mips.c	2012/09/02 10:36:54	190859
f@3049
    19
@@ -15415,7 +15415,10 @@
f@3049
    20
     }
f@3049
    21
 
f@3049
    22
   if (optimize > 0 && flag_delayed_branch)
f@3049
    23
-    dbr_schedule (get_insns ());
f@3049
    24
+    {
f@3049
    25
+      cleanup_barriers ();
f@3049
    26
+      dbr_schedule (get_insns ());
f@3049
    27
+    }
f@3049
    28
   mips_reorg_process_insns ();
f@3049
    29
   if (!TARGET_MIPS16
f@3049
    30
       && TARGET_EXPLICIT_RELOCS
f@3049
    31
--- gcc-4_7-branch/gcc/config/sparc/sparc.c	2012/09/02 10:36:27	190858
f@3049
    32
+++ gcc-4_7-branch/gcc/config/sparc/sparc.c	2012/09/02 10:36:54	190859
f@3049
    33
@@ -10663,7 +10663,10 @@
f@3049
    34
   /* We need to have the (essentially) final form of the insn stream in order
f@3049
    35
      to properly detect the various hazards.  Run delay slot scheduling.  */
f@3049
    36
   if (optimize > 0 && flag_delayed_branch)
f@3049
    37
-    dbr_schedule (get_insns ());
f@3049
    38
+    {
f@3049
    39
+      cleanup_barriers ();
f@3049
    40
+      dbr_schedule (get_insns ());
f@3049
    41
+    }
f@3049
    42
 
f@3049
    43
   /* Now look for specific patterns in the insn stream.  */
f@3049
    44
   for (insn = get_insns (); insn; insn = next)
f@3049
    45