]> git.pld-linux.org Git - packages/gcc.git/commitdiff
- drop obsolete files
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Sun, 5 Jul 2009 16:04:44 +0000 (16:04 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    gcc-4.1-pr29826.patch -> 1.2
    gcc-4.1-texinfo.patch -> 1.2
    gcc-ada.patch -> 1.3
    gcc-cmpi.patch -> 1.2
    gcc-pr19505.patch -> 1.2

gcc-4.1-pr29826.patch [deleted file]
gcc-4.1-texinfo.patch [deleted file]
gcc-ada.patch [deleted file]
gcc-cmpi.patch [deleted file]
gcc-pr19505.patch [deleted file]

diff --git a/gcc-4.1-pr29826.patch b/gcc-4.1-pr29826.patch
deleted file mode 100644 (file)
index 3711fb9..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-2006-10-04  Richard Henderson  <rth@redhat.com>
-           Jakub Jelinek  <jakub@redhat.com>
-
-       * tree-ssa-address.c (gen_addr_rtx): Check for const-ness of the
-       address before wrapping in CONST.
-
-Index: tree-ssa-address.c
-===================================================================
---- tree-ssa-address.c (revision 124014)
-+++ tree-ssa-address.c (working copy)
-@@ -1,5 +1,5 @@
- /* Memory address lowering and addressing mode selection.
--   Copyright (C) 2004 Free Software Foundation, Inc.
-+   Copyright (C) 2004, 2006 Free Software Foundation, Inc.
-    
- This file is part of GCC.
-    
-@@ -134,10 +134,15 @@
-       act_elem = symbol;
-       if (offset)
-       {
--        act_elem = gen_rtx_CONST (Pmode,
--                                  gen_rtx_PLUS (Pmode, act_elem, offset));
-+        act_elem = gen_rtx_PLUS (Pmode, act_elem, offset);
-+
-         if (offset_p)
--          *offset_p = &XEXP (XEXP (act_elem, 0), 1);
-+          *offset_p = &XEXP (act_elem, 1);
-+
-+        if (GET_CODE (symbol) == SYMBOL_REF
-+            || GET_CODE (symbol) == LABEL_REF
-+            || GET_CODE (symbol) == CONST)
-+          act_elem = gen_rtx_CONST (Pmode, act_elem);
-       }
-       if (*addr)
diff --git a/gcc-4.1-texinfo.patch b/gcc-4.1-texinfo.patch
deleted file mode 100644 (file)
index 1be95b5..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
---- gcc-4.1.2/configure.in.orig        2006-11-21 18:48:36.000000000 +0100
-+++ gcc-4.1.2/configure.in     2007-11-15 18:59:16.707713108 +0100
-@@ -2134,7 +2134,7 @@
-     # For an installed makeinfo, we require it to be from texinfo 4.2 or
-     # higher, else we use the "missing" dummy.
-     if ${MAKEINFO} --version \
--       | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[2-9]|[5-9])' >/dev/null 2>&1; then
-+       | egrep 'texinfo[^0-9]*(4\.([2-9]|[1-9][0-9])|[5-9]|[1-9][0-9])' >/dev/null 2>&1; then
-       :
-     else
-       MAKEINFO="$MISSING makeinfo"
---- gcc-4.1.2/configure.orig   2006-11-21 18:48:36.000000000 +0100
-+++ gcc-4.1.2/configure        2007-11-15 18:59:16.707713108 +0100
-@@ -2134,7 +2134,7 @@
-     # For an installed makeinfo, we require it to be from texinfo 4.2 or
-     # higher, else we use the "missing" dummy.
-     if ${MAKEINFO} --version \
--       | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[2-9]|[5-9])' >/dev/null 2>&1; then
-+       | egrep 'texinfo[^0-9]*(4\.([2-9]|[1-9][0-9])|[5-9]|[1-9][0-9])' >/dev/null 2>&1; then
-       :
-     else
-       MAKEINFO="$MISSING makeinfo"
diff --git a/gcc-ada.patch b/gcc-ada.patch
deleted file mode 100644 (file)
index c2bb06e..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
---- gcc-4_1-branch/gcc/ada/erroutc.adb~        2005-11-30 12:12:07.000000000 +0100
-+++ gcc-4_1-branch/gcc/ada/erroutc.adb 2007-02-08 19:47:25.000000000 +0100
-@@ -39,7 +39,6 @@
- with Sinput;   use Sinput;
- with Snames;   use Snames;
- with Targparm; use Targparm;
--with Table;
- with Uintp;    use Uintp;
- package body Erroutc is
---- /dev/null  2007-01-04 19:59:32.080403511 +0100
-+++ gcc-4_1-branch/gcc/ada/s-wchcon.adb        2007-02-08 19:59:59.000000000 +0100
-@@ -0,0 +1,2 @@
-+package body System.WCh_Con is
-+end System.WCh_Con;
---- gcc-4_1-branch/gcc/ada/s-wchcon.ads~       2007-02-08 19:59:57.000000000 +0100
-+++ gcc-4_1-branch/gcc/ada/s-wchcon.ads        2007-02-08 20:07:21.000000000 +0100
-@@ -39,6 +39,7 @@
- --  an appropriate WITH, and the interface can be expected to remain stable.
- package System.WCh_Con is
-+   pragma Elaborate_Body;
-    pragma Pure;
-    -------------------------------------
---- gcc-4_1-branch/gcc/ada/sem_attr.adb~       2005-11-30 12:12:07.000000000 +0100
-+++ gcc-4_1-branch/gcc/ada/sem_attr.adb        2007-02-08 20:11:24.000000000 +0100
-@@ -56,7 +56,6 @@
- with Stand;    use Stand;
- with Sinfo;    use Sinfo;
- with Sinput;   use Sinput;
--with Stand;
- with Stringt;  use Stringt;
- with Targparm; use Targparm;
- with Ttypes;   use Ttypes;
diff --git a/gcc-cmpi.patch b/gcc-cmpi.patch
deleted file mode 100644 (file)
index 0996f13..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- gcc-3.3.5/gcc/config/rs6000/eabi.asm~      Fri Oct  8 15:13:48 2004
-+++ gcc-3.3.5/gcc/config/rs6000/eabi.asm       Fri Oct  8 15:13:48 2004
-@@ -252,7 +252,7 @@
- .Lcvt:
-       lwzu    6,4(3)                          /* pointer to convert */
--      cmpi    0,6,0
-+      cmpwi   0,6,0
-       beq-    .Lcvt2                          /* if pointer is null, don't convert */
-         add   6,6,12                          /* convert pointer */
diff --git a/gcc-pr19505.patch b/gcc-pr19505.patch
deleted file mode 100644 (file)
index 3d6194a..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-The problem here is that have two basic block forwarders which go to the
-same basic block but destination of two different eh regions.  We cannot
-forward both of these basic blocks to that other basic block.
-
-The way I fixed the issue is to make sure that if we removing
-a forwarder block which is coming in from a EH edge, make sure
-that the destination basic block have only one single predecessor.
-Yes this is too strong but there is no simple way to check if a basic
-block is the destination of a different eh region.
-
---- gcc/gcc/tree-cfgcleanup.c  19 Aug 2005 18:52:55 -0000      2.7
-+++ gcc/gcc/tree-cfgcleanup.c  24 Sep 2005 23:30:54 -0000
-@@ -392,7 +392,18 @@ remove_forwarder_block (basic_block bb, 
-           return false;
-       }
-     }
--
-+  /* Check to make sure that we can remove a forwarder block for eh edges.  */
-+  FOR_EACH_EDGE (e, ei, bb->preds)
-+    {
-+      /* This check is too strong, we should also be checking eh regions
-+         but this is much harder.  */
-+      if (e->flags & EDGE_EH)
-+        {
-+        if (!single_pred_p (dest))
-+          return false;
-+      }
-+    }
-+  
-   /* Redirect the edges.  */
-   for (ei = ei_start (bb->preds); (e = ei_safe_edge (ei)); )
-     {
This page took 0.071828 seconds and 4 git commands to generate.