]> code.ossystems Code Review - openembedded-core.git/commitdiff
gcc: Drop unneeded patch
authorRichard Purdie <rpurdie@linux.intel.com>
Wed, 31 Dec 2008 20:17:34 +0000 (20:17 +0000)
committerRichard Purdie <rpurdie@linux.intel.com>
Wed, 31 Dec 2008 22:57:44 +0000 (22:57 +0000)
meta/packages/gcc/gcc-4.2.3.inc
meta/packages/gcc/gcc-4.2.3/fix-ICE-in-arm_unwind_emit_set.diff [deleted file]
meta/packages/gcc/gcc-4.3.1.inc
meta/packages/gcc/gcc-4.3.1/fix-ICE-in-arm_unwind_emit_set.diff [deleted file]
meta/packages/gcc/gcc-4.3.2.inc
meta/packages/gcc/gcc-4.3.2/fix-ICE-in-arm_unwind_emit_set.diff [deleted file]

index 7726030f208ff9e6ac4439f1e1f60189795d313e..127c3cd525934318c0e91089c8b4b91e8e821a6c 100644 (file)
@@ -31,7 +31,6 @@ SRC_URI = "ftp://ftp.gnu.org/pub/gnu/gcc/gcc-${PV}/gcc-${PV}.tar.bz2 \
        file://ldflags.patch;patch=1 \
        file://zecke-xgcc-cpp.patch;patch=1 \
        file://unbreak-armv4t.patch;patch=1 \
-       file://fix-ICE-in-arm_unwind_emit_set.diff;patch=1 \
        file://cache-amnesia.patch;patch=1 \
        file://gfortran.patch;patch=1 \
        file://gcc-4.0.2-e300c2c3.patch;patch=1 \
diff --git a/meta/packages/gcc/gcc-4.2.3/fix-ICE-in-arm_unwind_emit_set.diff b/meta/packages/gcc/gcc-4.2.3/fix-ICE-in-arm_unwind_emit_set.diff
deleted file mode 100644 (file)
index 568e15a..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
---- trunk/gcc/config/arm/arm.c 2006/09/19 13:18:27     117055
-+++ trunk/gcc/config/arm/arm.c 2006/09/19 13:19:24     117056
-@@ -15415,6 +15415,15 @@
-         /* Move from sp to reg.  */
-         asm_fprintf (asm_out_file, "\t.movsp %r\n", REGNO (e0));
-       }
-+     else if (GET_CODE (e1) == PLUS
-+            && GET_CODE (XEXP (e1, 0)) == REG
-+            && REGNO (XEXP (e1, 0)) == SP_REGNUM
-+            && GET_CODE (XEXP (e1, 1)) == CONST_INT)
-+      {
-+        /* Set reg to offset from sp.  */
-+        asm_fprintf (asm_out_file, "\t.movsp %r, #%d\n",
-+                     REGNO (e0), (int)INTVAL(XEXP (e1, 1)));
-+      }
-       else
-       abort ();
-       break;
index fb1b0a2f743a69e8dc5d3562312a8854e3bbeacf..3fcd160611b4391a22418a201776eadc3200f3a8 100644 (file)
@@ -50,7 +50,6 @@ SRC_URI = "ftp://ftp.gnu.org/pub/gnu/gcc/gcc-${PV}/gcc-${PV}.tar.bz2 \
 #      file://arm-thumb-cache.patch;patch=1 \
        file://ldflags.patch;patch=1 \
        file://zecke-xgcc-cpp.patch;patch=1 \
-       file://fix-ICE-in-arm_unwind_emit_set.diff;patch=1 \
        file://cache-amnesia.patch;patch=1 \
        file://gfortran.patch;patch=1 \
 #      file://gcc-4.0.2-e300c2c3.patch;patch=1 \
diff --git a/meta/packages/gcc/gcc-4.3.1/fix-ICE-in-arm_unwind_emit_set.diff b/meta/packages/gcc/gcc-4.3.1/fix-ICE-in-arm_unwind_emit_set.diff
deleted file mode 100644 (file)
index b8a147d..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
---- /tmp/arm.c 2008-03-17 14:24:39.590464969 +0100
-+++ gcc-4.3.0/gcc/config/arm/arm.c     2008-03-17 14:12:21.614701982 +0100
-@@ -15959,6 +15959,9 @@
-   int regno;
-   int lo_mask = mask & 0xFF;
-   int pushed_words = 0;
-+  rtx e0;
-+  rtx e1;
-+  unsigned reg;
-   gcc_assert (mask);
-@@ -16025,6 +16028,15 @@
-         return;
-       }
-+     else if (GET_CODE (e1) == PLUS
-+            && GET_CODE (XEXP (e1, 0)) == REG
-+            && REGNO (XEXP (e1, 0)) == SP_REGNUM
-+            && GET_CODE (XEXP (e1, 1)) == CONST_INT)
-+      {
-+        /* Set reg to offset from sp.  */
-+        asm_fprintf (asm_out_file, "\t.movsp %r, #%d\n",
-+                     REGNO (e0), (int)INTVAL(XEXP (e1, 1)));
-+      }
-       else
-       {
-         if (mask & 0xFF)
index 1e8f4d6b4fb8b67cb0c65f152c2818fede351d02..93cfbe0c4ad1122089c3b8604229e10991b5c3af 100644 (file)
@@ -50,7 +50,6 @@ SRC_URI = "ftp://ftp.gnu.org/pub/gnu/gcc/gcc-${PV}/gcc-${PV}.tar.bz2 \
 #      file://arm-thumb-cache.patch;patch=1 \
        file://ldflags.patch;patch=1 \
        file://zecke-xgcc-cpp.patch;patch=1 \
-       file://fix-ICE-in-arm_unwind_emit_set.diff;patch=1 \
        file://cache-amnesia.patch;patch=1 \
        file://gfortran.patch;patch=1 \
 #      file://gcc-4.0.2-e300c2c3.patch;patch=1 \
diff --git a/meta/packages/gcc/gcc-4.3.2/fix-ICE-in-arm_unwind_emit_set.diff b/meta/packages/gcc/gcc-4.3.2/fix-ICE-in-arm_unwind_emit_set.diff
deleted file mode 100644 (file)
index b8a147d..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
---- /tmp/arm.c 2008-03-17 14:24:39.590464969 +0100
-+++ gcc-4.3.0/gcc/config/arm/arm.c     2008-03-17 14:12:21.614701982 +0100
-@@ -15959,6 +15959,9 @@
-   int regno;
-   int lo_mask = mask & 0xFF;
-   int pushed_words = 0;
-+  rtx e0;
-+  rtx e1;
-+  unsigned reg;
-   gcc_assert (mask);
-@@ -16025,6 +16028,15 @@
-         return;
-       }
-+     else if (GET_CODE (e1) == PLUS
-+            && GET_CODE (XEXP (e1, 0)) == REG
-+            && REGNO (XEXP (e1, 0)) == SP_REGNUM
-+            && GET_CODE (XEXP (e1, 1)) == CONST_INT)
-+      {
-+        /* Set reg to offset from sp.  */
-+        asm_fprintf (asm_out_file, "\t.movsp %r, #%d\n",
-+                     REGNO (e0), (int)INTVAL(XEXP (e1, 1)));
-+      }
-       else
-       {
-         if (mask & 0xFF)