From 8d5e77f9e54eb76fd5d7de6809a347a99ad58aa9 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Mon, 21 Mar 2011 20:50:44 +0100 Subject: [PATCH] 4.6.0-0.15 --- .gitignore | 1 + gcc.spec | 11 +++++++--- gcc46-ppl-0.10.patch | 52 ++++++++++++++++++++++---------------------- sources | 2 +- 4 files changed, 36 insertions(+), 30 deletions(-) diff --git a/.gitignore b/.gitignore index db19746..65938ab 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /gcc-4.6.0-20110304.tar.bz2 /gcc-4.6.0-20110315.tar.bz2 /gcc-4.6.0-20110318.tar.bz2 +/gcc-4.6.0-20110321.tar.bz2 diff --git a/gcc.spec b/gcc.spec index 1756c91..8b77f8d 100644 --- a/gcc.spec +++ b/gcc.spec @@ -1,9 +1,9 @@ -%global DATE 20110318 -%global SVNREV 171160 +%global DATE 20110321 +%global SVNREV 171264 %global gcc_version 4.6.0 # Note, gcc_release must be integer, if you want to add suffixes to # %{release}, append them after %{gcc_release} on Release: line. -%global gcc_release 0.14 +%global gcc_release 0.15 %global _unpackaged_files_terminate_build 0 %global multilib_64_archs sparc64 ppc64 s390x x86_64 %ifarch %{ix86} x86_64 ia64 ppc ppc64 alpha @@ -2340,6 +2340,11 @@ fi %{_prefix}/lib/gcc/%{gcc_target_platform}/%{gcc_version}/plugin %changelog +* Mon Mar 21 2011 Jakub Jelinek 4.6.0-0.15 +- update from the 4.6 branch + - PRs bootstrap/45381, bootstrap/48135 +- fix s390 ICE during address delegitimization (PR target/48213, #689266) + * Fri Mar 18 2011 Jakub Jelinek 4.6.0-0.14 - update from the 4.6 branch - PRs bootstrap/48161, c++/48113, c++/48115, c++/48132, debug/47510, diff --git a/gcc46-ppl-0.10.patch b/gcc46-ppl-0.10.patch index 3ea7118..d43f34f 100644 --- a/gcc46-ppl-0.10.patch +++ b/gcc46-ppl-0.10.patch @@ -49,39 +49,39 @@ gcc/ #endif --- configure.ac (revision 169207) +++ configure.ac (revision 169206) -@@ -1668,9 +1668,9 @@ ENABLE_PPL_CHECK=yes) - if test "x$with_ppl" != "xno" -a "${ENABLE_PPL_CHECK}" = "yes"; then - saved_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $pplinc $gmpinc" -- AC_MSG_CHECKING([for version 0.11 (or later revision) of PPL]) -+ AC_MSG_CHECKING([for version 0.10 (or later revision) of PPL]) - AC_TRY_COMPILE([#include "ppl_c.h"],[ -- #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 11 -+ #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 10 - choke me - #endif - ], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]); ppllibs= ; pplinc= ; with_ppl=no ]) +@@ -1688,9 +1688,9 @@ if test "x$with_ppl" != xno; then + if test "$enable_ppl_version_check" != no; then + saved_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $pplinc $gmpinc" +- AC_MSG_CHECKING([for version 0.11 (revision 0 or later) of PPL]) ++ AC_MSG_CHECKING([for version 0.10 (revision 0 or later) of PPL]) + AC_TRY_COMPILE([#include "ppl_c.h"],[ +- #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 11 ++ #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 10 + choke me + #endif + ], [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]); ppllibs= ; pplinc= ; with_ppl=no ]) --- configure (revision 169207) +++ configure (revision 169206) -@@ -5716,8 +5716,8 @@ fi - if test "x$with_ppl" != "xno" -a "${ENABLE_PPL_CHECK}" = "yes"; then - saved_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS $pplinc $gmpinc" -- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for version 0.11 (or later revision) of PPL" >&5 --$as_echo_n "checking for version 0.11 (or later revision) of PPL... " >&6; } -+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for version 0.10 (or later revision) of PPL" >&5 -+$as_echo_n "checking for version 0.10 (or later revision) of PPL... " >&6; } - cat confdefs.h - <<_ACEOF >conftest.$ac_ext +@@ -5775,8 +5775,8 @@ fi + if test "$enable_ppl_version_check" != no; then + saved_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $pplinc $gmpinc" +- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for version 0.11 (revision 0 or later) of PPL" >&5 +-$as_echo_n "checking for version 0.11 (revision 0 or later) of PPL... " >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for version 0.10 (revision 0 or later) of PPL" >&5 ++$as_echo_n "checking for version 0.10 (revision 0 or later) of PPL... " >&6; } + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include "ppl_c.h" -@@ -5725,7 +5725,7 @@ int +@@ -5784,7 +5784,7 @@ int main () { -- #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 11 -+ #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 10 - choke me - #endif +- #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 11 ++ #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 10 + choke me + #endif --- gcc/testsuite/gcc.dg/graphite/interchange-11.c.jj 2011-01-28 09:38:11.000000000 +0100 +++ gcc/testsuite/gcc.dg/graphite/interchange-11.c 2011-01-28 11:06:56.461429848 +0100 diff --git a/sources b/sources index f2fe4f3..4fbe062 100644 --- a/sources +++ b/sources @@ -1,2 +1,2 @@ 2659f09c2e43ef8b7d4406321753f1b2 fastjar-0.97.tar.gz -0bcffc502727f4e8b26ca6eda7bc506e gcc-4.6.0-20110318.tar.bz2 +c0886ed7ce4a839b90693e1322632c70 gcc-4.6.0-20110321.tar.bz2