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: 5.0.0-0.15
Date: Mon, 29 Jun 2026 12:26:39 GMT	[thread overview]
Message-ID: <178273599955.1.1889500766284268178.rpms-gcc-a2ef59f7316f@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/gcc
Branch : rhel-f41-base
Commit : a2ef59f7316fa8d69251fe793e36bc48b40efce5
Author : Jakub Jelinek <jakub@redhat.com>
Date   : 2015-02-17T12:12:28+01:00
Stats  : +54/-4 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/gcc/c/a2ef59f7316fa8d69251fe793e36bc48b40efce5?branch=rhel-f41-base

Log:
5.0.0-0.15

---
diff --git a/.gitignore b/.gitignore
index 20c81df..14dd314 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,3 +7,4 @@
 /gcc-5.0.0-20150212.tar.bz2
 /gcc-5.0.0-20150214.tar.bz2
 /gcc-5.0.0-20150216.tar.bz2
+/gcc-5.0.0-20150217.tar.bz2

diff --git a/gcc.spec b/gcc.spec
index f6c22eb..9f541c5 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -1,9 +1,9 @@
-%global DATE 20150216
-%global SVNREV 220728
+%global DATE 20150217
+%global SVNREV 220752
 %global gcc_version 5.0.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 _performance_build 1
 %global multilib_64_archs sparc64 ppc64 ppc64p7 s390x x86_64
@@ -200,6 +200,7 @@ Patch13: gcc5-aarch64-async-unw-tables.patch
 Patch14: gcc5-libsanitize-aarch64-va42.patch
 Patch15: gcc5-pr32219-revert.patch
 Patch16: gcc5-pr65074-test.patch
+Patch17: gcc5-pr65087.patch
 
 # On ARM EABI systems, we do want -gnueabi to be part of the
 # target triple.
@@ -753,6 +754,7 @@ rm -f libgo/go/crypto/elliptic/p224{,_test}.go
 %patch16 -p0 -b .pr65074-test~
 rm -f gcc/testsuite/gcc.target/i386/pr32219-*.c
 rm -f gcc/testsuite/gcc.dg/visibility-2{2,3}.c
+%patch17 -p0 -b .pr65087~
 
 %if 0%{?_enable_debug_packages}
 mkdir dwz-wrapper
@@ -2938,6 +2940,12 @@ fi
 %doc rpm.doc/changelogs/libcc1/ChangeLog*
 
 %changelog
+* Tue Feb 16 2015 Jakub Jelinek <jakub@redhat.com> 5.0.0-0.15
+- update from the trunk
+  - PRs bootstrap/48009, c++/65075, c++/65080, c/65066, ipa/64963, ipa/65059,
+	target/53348, target/65058, tree-optimization/63593,
+	tree-optimization/65077
+
 * Mon Feb 16 2015 Jakub Jelinek <jakub@redhat.com> 5.0.0-0.14
 - update from the trunk
   - PRs c/64768, testsuite/64850

diff --git a/gcc5-pr65087.patch b/gcc5-pr65087.patch
new file mode 100644
index 0000000..49d3ede
--- /dev/null
+++ b/gcc5-pr65087.patch
@@ -0,0 +1,41 @@
+2015-02-17  Jakub Jelinek  <jakub@redhat.com>
+
+	PR ipa/65087
+	* cgraphclones.c (cgraph_node::create_virtual_clone): Only copy
+	section if !implicit_section.
+	(cgraph_node::create_version_clone_with_body): Likewise.
+	* trans-mem.c (ipa_tm_create_version): Likewise.
+
+--- gcc/cgraphclones.c.jj	2015-02-16 20:16:43.000000000 +0100
++++ gcc/cgraphclones.c	2015-02-17 09:35:19.682184215 +0100
+@@ -617,7 +617,7 @@ cgraph_node::create_virtual_clone (vec<c
+      ABI support for this.  */
+   set_new_clone_decl_and_node_flags (new_node);
+   new_node->clone.tree_map = tree_map;
+-  if (!DECL_ONE_ONLY (old_decl))
++  if (!implicit_section)
+     new_node->set_section (get_section ());
+ 
+   /* Clones of global symbols or symbols with unique names are unique.  */
+@@ -1011,7 +1011,8 @@ cgraph_node::create_version_clone_with_b
+   new_version_node->externally_visible = 0;
+   new_version_node->local.local = 1;
+   new_version_node->lowered = true;
+-  new_version_node->set_section (get_section ());
++  if (!implicit_section)
++    new_version_node->set_section (get_section ());
+   /* Clones of global symbols or symbols with unique names are unique.  */
+   if ((TREE_PUBLIC (old_decl)
+        && !DECL_EXTERNAL (old_decl)
+--- gcc/trans-mem.c.jj	2015-02-16 20:16:43.000000000 +0100
++++ gcc/trans-mem.c	2015-02-17 09:35:19.682184215 +0100
+@@ -4967,7 +4967,8 @@ ipa_tm_create_version (struct cgraph_nod
+   new_node->externally_visible = old_node->externally_visible;
+   new_node->lowered = true;
+   new_node->tm_clone = 1;
+-  new_node->set_section (old_node->get_section ());
++  if (!old_node->implicit_section)
++    new_node->set_section (old_node->get_section ());
+   get_cg_data (&old_node, true)->clone = new_node;
+ 
+   if (old_node->get_availability () >= AVAIL_INTERPOSABLE)

diff --git a/sources b/sources
index 72dc9a2..7fe5049 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-74407e65096ddfac4cc4d4615baca1fa  gcc-5.0.0-20150216.tar.bz2
+a9b3b45dd68912df007f5e7fd95bb106  gcc-5.0.0-20150217.tar.bz2

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

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-29 12:26 Jakub Jelinek [this message]
2026-06-29 12:26 [rpms/gcc] rhel-f41-base: 5.0.0-0.15 Jakub Jelinek
2026-06-29 12:26 Jakub Jelinek

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=178273599955.1.1889500766284268178.rpms-gcc-a2ef59f7316f@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