public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Jakub Jelinek <jakub@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/gcc] rhel-f41-base: 4.8.0-6
Date: Mon, 29 Jun 2026 12:25:52 GMT	[thread overview]
Message-ID: <178273595273.1.11548630110256735045.rpms-gcc-5c60aab4d19f@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/gcc
Branch : rhel-f41-base
Commit : 5c60aab4d19fd84516957c5f4ceed251e92ff3c6
Author : Jakub Jelinek <jakub@redhat.com>
Date   : 2013-05-17T18:11:08+02:00
Stats  : +16/-62 in 5 file(s)
URL    : https://src.fedoraproject.org/rpms/gcc/c/5c60aab4d19fd84516957c5f4ceed251e92ff3c6?branch=rhel-f41-base

Log:
4.8.0-6

---
diff --git a/.gitignore b/.gitignore
index b3cf14d..cc7803f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -72,3 +72,4 @@
 /gcc-4.8.0-20130419.tar.bz2
 /gcc-4.8.0-20130507.tar.bz2
 /gcc-4.8.0-20130510.tar.bz2
+/gcc-4.8.0-20130517.tar.bz2

diff --git a/gcc.spec b/gcc.spec
index c14fe87..4ee6380 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -1,9 +1,9 @@
-%global DATE 20130510
-%global SVNREV 198794
+%global DATE 20130517
+%global SVNREV 199023
 %global gcc_version 4.8.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 5
+%global gcc_release 6
 %global _unpackaged_files_terminate_build 0
 %global multilib_64_archs sparc64 ppc64 s390x x86_64
 %ifarch %{ix86} x86_64 ia64 ppc ppc64 alpha
@@ -193,8 +193,6 @@ Patch9: gcc48-cloog-dl2.patch
 Patch10: gcc48-pr38757.patch
 Patch11: gcc48-libstdc++-docs.patch
 Patch12: gcc48-no-add-needed.patch
-Patch13: gcc48-rh957778.patch
-Patch14: gcc48-pr57230.patch
 
 Patch1000: fastjar-0.97-segfault.patch
 Patch1001: fastjar-0.97-len1.patch
@@ -748,8 +746,6 @@ package or when debugging this package.
 %patch11 -p0 -b .libstdc++-docs~
 %endif
 %patch12 -p0 -b .no-add-needed~
-%patch13 -p0 -b .rh957778~
-%patch14 -p0 -b .pr57230~
 
 %if 0%{?_enable_debug_packages}
 cat > split-debuginfo.sh <<\EOF
@@ -2983,6 +2979,17 @@ fi
 %{_prefix}/libexec/gcc/%{gcc_target_platform}/%{gcc_version}/plugin
 
 %changelog
+* Fri May 17 2013 Jakub Jelinek <jakub@redhat.com> 4.8.0-6
+- update from the 4.8 branch
+  - PRs c++/56782, c++/56998, c++/57041, c++/57196, c++/57243, c++/57252,
+	c++/57253, c++/57254, c++/57274, c++/57279, middle-end/57251,
+	rtl-optimization/57281, rtl-optimization/57300, target/45359,
+	target/46396, target/57264
+- backport color diagnostics support from trunk, enable with
+  -fdiagnostics-color=auto, -fdiagnostics-color=always or
+  having non-empty GCC_COLORS variable in environment
+- backport -fstack-protector-strong support from trunk
+
 * Fri May 10 2013 Jakub Jelinek <jakub@redhat.com> 4.8.0-5
 - update from the 4.8 branch
   - PRs bootstrap/54281, bootstrap/54659, c++/57047, c++/57068, c++/57222,

diff --git a/gcc48-pr57230.patch b/gcc48-pr57230.patch
deleted file mode 100644
index 5449dde..0000000
--- a/gcc48-pr57230.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-2013-05-10  Jakub Jelinek  <jakub@redhat.com>
-
-	PR tree-optimization/57230
-	* tree-ssa-strlen.c (handle_char_store): Add missing integer_zerop
-	check.
-
-	* gcc.dg/strlenopt-23.c: New test.
-
---- gcc/tree-ssa-strlen.c.jj	2013-04-26 08:49:53.000000000 +0200
-+++ gcc/tree-ssa-strlen.c	2013-05-10 08:57:20.654523288 +0200
-@@ -1703,7 +1703,7 @@ handle_char_store (gimple_stmt_iterator
- 	       its length may be decreased.  */
- 	    adjust_last_stmt (si, stmt, false);
- 	}
--      else if (si != NULL)
-+      else if (si != NULL && integer_zerop (gimple_assign_rhs1 (stmt)))
- 	{
- 	  si = unshare_strinfo (si);
- 	  si->length = build_int_cst (size_type_node, 0);
---- gcc/testsuite/gcc.dg/strlenopt-23.c.jj	2013-05-10 09:01:27.808152595 +0200
-+++ gcc/testsuite/gcc.dg/strlenopt-23.c	2013-05-10 09:02:08.042931124 +0200
-@@ -0,0 +1,15 @@
-+/* PR tree-optimization/57230 */
-+/* { dg-do run } */
-+/* { dg-options "-O2" } */
-+
-+#include "strlenopt.h"
-+
-+int
-+main ()
-+{
-+  char p[] = "hello world";
-+  p[0] = (char) (strlen (p) - 1);
-+  if (strlen (p) != 11)
-+    abort ();
-+  return 0;
-+}

diff --git a/gcc48-rh957778.patch b/gcc48-rh957778.patch
deleted file mode 100644
index 45db0e5..0000000
--- a/gcc48-rh957778.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-2013-05-06  Jakub Jelinek  <jakub@redhat.com>
-
-	* gcc.c (SANITIZER_SPEC): Reject -fsanitize=address -fsanitize=thread
-	linking.
-
---- gcc/gcc.c.jj	2013-04-15 16:55:04.000000000 +0200
-+++ gcc/gcc.c	2013-05-06 17:25:42.306455151 +0200
-@@ -716,7 +716,8 @@ proper position among the other output f
- #ifndef SANITIZER_SPEC
- #define SANITIZER_SPEC "\
- %{!nostdlib:%{!nodefaultlibs:%{fsanitize=address:" LIBASAN_SPEC "\
--    %{static:%ecannot specify -static with -fsanitize=address}}\
-+    %{static:%ecannot specify -static with -fsanitize=address}\
-+    %{fsanitize=thread:%e-fsanitize=address is incompatible with -fsanitize=thread}}\
-     %{fsanitize=thread:" LIBTSAN_SPEC "\
-     %{!pie:%{!shared:%e-fsanitize=thread linking must be done with -pie or -shared}}}}}"
- #endif

diff --git a/sources b/sources
index b017cae..fde3c15 100644
--- a/sources
+++ b/sources
@@ -1,4 +1,4 @@
 be78a47bd82523250eb3e91646db5b3d  cloog-0.18.0.tar.gz
 2659f09c2e43ef8b7d4406321753f1b2  fastjar-0.97.tar.gz
-685602a8393f6d34cf63d14827828fbf  gcc-4.8.0-20130510.tar.bz2
+968a4a0990408a441e4fe3fae4dc7c21  gcc-4.8.0-20130517.tar.bz2
 bce1586384d8635a76d2f017fb067cd2  isl-0.11.1.tar.bz2

                 reply	other threads:[~2026-06-29 12:25 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178273595273.1.11548630110256735045.rpms-gcc-5c60aab4d19f@fedoraproject.org \
    --to=jakub@redhat.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox