From 38dbb3870188cbf0d4b6cec960c93bd73d2958d2 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Sun, 31 Jan 2010 12:43:49 +0100 Subject: cc/gcc: remove 4.3.0 gcc-4.3.0 never got !EXPERIMENTAL, and no one either confirmed nor complained. --- patches/gcc/4.3.0/270-pr35982.patch | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 patches/gcc/4.3.0/270-pr35982.patch (limited to 'patches/gcc/4.3.0/270-pr35982.patch') diff --git a/patches/gcc/4.3.0/270-pr35982.patch b/patches/gcc/4.3.0/270-pr35982.patch deleted file mode 100644 index 461fd578..00000000 --- a/patches/gcc/4.3.0/270-pr35982.patch +++ /dev/null @@ -1,23 +0,0 @@ -Original patch from gentoo: gentoo/src/patchsets/gcc/4.3.0/gentoo/65_all_gcc43-pr35982.patch -http://gcc.gnu.org/PR35982 - -2008-04-23 Ira Rosen - - PR tree-optimization/35982 - * tree-vect-analyze.c (vect_check_interleaving): Check that the - interleaved data-refs are of the same type. - -diff -durN gcc-4.3.0.orig/gcc/tree-vect-analyze.c gcc-4.3.0/gcc/tree-vect-analyze.c ---- gcc-4.3.0.orig/gcc/tree-vect-analyze.c 2007-12-06 17:18:55.000000000 +0100 -+++ gcc-4.3.0/gcc/tree-vect-analyze.c 2008-06-10 14:45:17.000000000 +0200 -@@ -1081,7 +1081,9 @@ - type_size_b = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (TREE_TYPE (DR_REF (drb)))); - - if (type_size_a != type_size_b -- || tree_int_cst_compare (DR_STEP (dra), DR_STEP (drb))) -+ || tree_int_cst_compare (DR_STEP (dra), DR_STEP (drb)) -+ || !types_compatible_p (TREE_TYPE (DR_REF (dra)), -+ TREE_TYPE (DR_REF (drb)))) - return; - - init_a = TREE_INT_CST_LOW (DR_INIT (dra)); -- cgit v1.2.3