patches/gcc/4.3.3/110-trampolinewarn.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Aug 02 18:28:10 2011 +0200 (2011-08-02)
changeset 2590 b64cfb67944e
permissions -rw-r--r--
scripts/functions: svn retrieval first tries the mirror for tarballs

The svn download helper looks for the local tarballs dir to see if it
can find a pre-downloaded tarball, and if it does not find it, does
the actual fetch to upstream via svn.

In the process, it does not even try to get a tarball from the local
mirror, which can be useful if the mirror has been pre-populated
manually (or with a previously downloaded tree).

Fake a tarball get with the standard tarball-download helper, but
without specifying any upstream URL, which makes the helper directly
try the LAN mirror.

Of course, if no mirror is specified, no URL wil be available, and
the standard svn retrieval will kick in.

Reported-by: ANDY KENNEDY <ANDY.KENNEDY@adtran.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     1 Original patch from: ../4.3.2/110-trampolinewarn.patch
     2 
     3 -= BEGIN original header =-
     4 Original patch from gentoo: gentoo/src/patchsets/gcc/4.3.1/gentoo/00_all_gcc-trampolinewarn.patch
     5 	This trivial patch causes gcc to emit a warning whenever
     6 	it generates a trampoline.  These are otherwise hard to
     7 	locate.  It is rigged to default ON - to have it default
     8 	to OFF remove the text 'Init(1)' from the common.opt
     9 	patch, leaving just 'Common Var(warn_trampolines)'.
    10 	Kevin F. Quinn <kevquinn@gentoo.org> 17 Jan 2006
    11 
    12 -= END original header =-
    13 
    14 diff -durN gcc-4.3.3.orig/gcc/builtins.c gcc-4.3.3/gcc/builtins.c
    15 --- gcc-4.3.3.orig/gcc/builtins.c	2008-08-19 18:37:13.000000000 +0200
    16 +++ gcc-4.3.3/gcc/builtins.c	2009-01-27 22:19:12.000000000 +0100
    17 @@ -5662,6 +5662,9 @@
    18    trampolines_created = 1;
    19    INITIALIZE_TRAMPOLINE (r_tramp, r_func, r_chain);
    20  
    21 +  if (warn_trampolines)
    22 +    warning (OPT_Wtrampolines, "generating trampoline in object (requires executable stack)");
    23 +
    24    return const0_rtx;
    25  }
    26  
    27 diff -durN gcc-4.3.3.orig/gcc/common.opt gcc-4.3.3/gcc/common.opt
    28 --- gcc-4.3.3.orig/gcc/common.opt	2008-01-22 15:11:44.000000000 +0100
    29 +++ gcc-4.3.3/gcc/common.opt	2009-01-27 22:19:12.000000000 +0100
    30 @@ -182,6 +182,10 @@
    31  Common Var(warn_system_headers) Warning
    32  Do not suppress warnings from system headers
    33  
    34 +Wtrampolines
    35 +Common Var(warn_trampolines) Init(1)
    36 +Warn whenever a trampoline is generated
    37 +
    38  Wuninitialized
    39  Common Var(warn_uninitialized) Warning
    40  Warn about uninitialized automatic variables