public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/gcc] rhel-f41-base: 5.0.1-0.2
@ 2026-06-29 12:26 Jakub Jelinek
0 siblings, 0 replies; 2+ messages in thread
From: Jakub Jelinek @ 2026-06-29 12:26 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/gcc
Branch : rhel-f41-base
Commit : f3095e13326261d35b72b8f3b49cbeea14e509fd
Author : Jakub Jelinek <jakub@redhat.com>
Date : 2015-04-17T19:31:34+02:00
Stats : +57/-0 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/f3095e13326261d35b72b8f3b49cbeea14e509fd?branch=rhel-f41-base
Log:
5.0.1-0.2
---
diff --git a/gcc.spec b/gcc.spec
index a4843dd..259cc0f 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -204,6 +204,7 @@ Patch11: gcc5-no-add-needed.patch
Patch12: gcc5-libgo-p224.patch
Patch13: gcc5-aarch64-async-unw-tables.patch
Patch14: gcc5-libsanitize-aarch64-va42.patch
+Patch15: gcc5-pr65787.patch
# On ARM EABI systems, we do want -gnueabi to be part of the
# target triple.
@@ -770,6 +771,7 @@ package or when debugging this package.
rm -f libgo/go/crypto/elliptic/p224{,_test}.go
%patch13 -p0 -b .aarch64-async-unw-tables~
%patch14 -p0 -b .libsanitize-aarch64-va42~
+%patch15 -p0 -b .pr65787~
%if 0%{?_enable_debug_packages}
mkdir dwz-wrapper
diff --git a/gcc5-pr65787.patch b/gcc5-pr65787.patch
new file mode 100644
index 0000000..c5674ed
--- /dev/null
+++ b/gcc5-pr65787.patch
@@ -0,0 +1,55 @@
+2015-04-17 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
+
+ PR target/65787
+ * config/rs6000/rs6000.c (rtx_is_swappable_p): Remove previous
+ fix; ensure that a subsequent SH_NONE operand does not overwrite
+ an existing *special value.
+
+--- gcc/config/rs6000/rs6000.c.jj 2015-04-17 19:09:59.000000000 +0200
++++ gcc/config/rs6000/rs6000.c 2015-04-17 19:28:43.264784372 +0200
+@@ -34204,17 +34204,6 @@ rtx_is_swappable_p (rtx op, unsigned int
+ else
+ return 0;
+
+- case PARALLEL:
+- /* A vec_extract operation may be wrapped in a PARALLEL with a
+- clobber, so account for that possibility. */
+- if (XVECLEN (op, 0) != 2)
+- return 0;
+-
+- if (GET_CODE (XVECEXP (op, 0, 1)) != CLOBBER)
+- return 0;
+-
+- return rtx_is_swappable_p (XVECEXP (op, 0, 0), special);
+-
+ case UNSPEC:
+ {
+ /* Various operations are unsafe for this optimization, at least
+@@ -34296,10 +34285,11 @@ rtx_is_swappable_p (rtx op, unsigned int
+ {
+ unsigned int special_op = SH_NONE;
+ ok &= rtx_is_swappable_p (XEXP (op, i), &special_op);
++ if (special_op == SH_NONE)
++ continue;
+ /* Ensure we never have two kinds of special handling
+ for the same insn. */
+- if (*special != SH_NONE && special_op != SH_NONE
+- && *special != special_op)
++ if (*special != SH_NONE && *special != special_op)
+ return 0;
+ *special = special_op;
+ }
+@@ -34308,10 +34298,11 @@ rtx_is_swappable_p (rtx op, unsigned int
+ {
+ unsigned int special_op = SH_NONE;
+ ok &= rtx_is_swappable_p (XVECEXP (op, i, j), &special_op);
++ if (special_op == SH_NONE)
++ continue;
+ /* Ensure we never have two kinds of special handling
+ for the same insn. */
+- if (*special != SH_NONE && special_op != SH_NONE
+- && *special != special_op)
++ if (*special != SH_NONE && *special != special_op)
+ return 0;
+ *special = special_op;
+ }
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [rpms/gcc] rhel-f41-base: 5.0.1-0.2
@ 2026-06-29 12:26 Jakub Jelinek
0 siblings, 0 replies; 2+ messages in thread
From: Jakub Jelinek @ 2026-06-29 12:26 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/gcc
Branch : rhel-f41-base
Commit : 7a229a588805e5a3df3b5f39022483f80d47f3e4
Author : Jakub Jelinek <jakub@redhat.com>
Date : 2015-04-17T19:24:08+02:00
Stats : +12/-6 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/7a229a588805e5a3df3b5f39022483f80d47f3e4?branch=rhel-f41-base
Log:
5.0.1-0.2
---
diff --git a/.gitignore b/.gitignore
index 2d9ca42..2aa5a83 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,3 +15,4 @@
/gcc-5.0.0-20150319.tar.bz2
/gcc-5.0.0-20150407.tar.bz2
/gcc-5.0.1-20150413.tar.bz2
+/gcc-5.0.1-20150417.tar.bz2
diff --git a/gcc.spec b/gcc.spec
index 4cd246e..a4843dd 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -1,9 +1,9 @@
-%global DATE 20150413
-%global SVNREV 222046
+%global DATE 20150417
+%global SVNREV 222191
%global gcc_version 5.0.1
# 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.1
+%global gcc_release 0.2
%global _unpackaged_files_terminate_build 0
%global _performance_build 1
%global multilib_64_archs sparc64 ppc64 ppc64p7 s390x x86_64
@@ -3068,6 +3068,11 @@ fi
%doc rpm.doc/changelogs/libcc1/ChangeLog*
%changelog
+* Fri Apr 17 2015 Jakub Jelinek <jakub@redhat.com> 5.0.1-0.2
+- update from the 5 branch
+ - PRs bootstrap/62077, bootstrap/65763, debug/65771, ipa/65765,
+ libstdc++/65754, rtl-optimization/65761, target/65780, target/65787
+
* Mon Apr 13 2015 Jakub Jelinek <jakub@redhat.com> 5.0.1-0.1
- update from the trunk and 5 branch
- update to GCC 5.1-RC1
diff --git a/gcc5-libstdc++-docs.patch b/gcc5-libstdc++-docs.patch
index 58f4b33..beda445 100644
--- a/gcc5-libstdc++-docs.patch
+++ b/gcc5-libstdc++-docs.patch
@@ -4,7 +4,7 @@
<a class="link" href="http://www.fsf.org/" target="_top">FSF
</a>
</p><p>
-+ Release 5.0.0
++ Release 5.0.1
+ </p><p>
Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation
@@ -18,7 +18,7 @@
- The API documentation, rendered into HTML, can be viewed online:
+ The API documentation, rendered into HTML, can be viewed here:
</p><div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem"><p>
-+ <a class="link" href="api/index.html" target="_top">for the 5.0.0 release, local
++ <a class="link" href="api/index.html" target="_top">for the 5.0.1 release, local
+ </a>
+ </p></li><li class="listitem"><p>
<a class="link" href="http://gcc.gnu.org/onlinedocs/libstdc++/libstdc++-html-USERS-3.4/index.html" target="_top">for the 3.4 release
diff --git a/sources b/sources
index f95775f..f3ec04d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-4591e55674cc174766f5943d8635b275 gcc-5.0.1-20150413.tar.bz2
+95324ee9bce6045eb2b0c0ffecd91f64 gcc-5.0.1-20150417.tar.bz2
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-06-29 12:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-29 12:26 [rpms/gcc] rhel-f41-base: 5.0.1-0.2 Jakub Jelinek
2026-06-29 12:26 Jakub Jelinek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox