public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/gcc] rhel-f41-base: 11.1.1-5
@ 2026-06-29 12:29 Jakub Jelinek
0 siblings, 0 replies; 2+ messages in thread
From: Jakub Jelinek @ 2026-06-29 12:29 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/gcc
Branch : rhel-f41-base
Commit : 063f63dafb219b990a54ae8e4f4e93ed226cdb13
Author : Jakub Jelinek <jakub@redhat.com>
Date : 2021-06-17T10:57:18+02:00
Stats : +21/-95 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/063f63dafb219b990a54ae8e4f4e93ed226cdb13?branch=rhel-f41-base
Log:
11.1.1-5
---
diff --git a/gcc.spec b/gcc.spec
index e2cfbe4..c3ec569 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -4,7 +4,7 @@
%global gcc_major 11
# 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 4
+%global gcc_release 5
%global nvptx_tools_gitrev 5f6f343a302d620b0868edab376c00b15741e39e
%global newlib_cygwin_gitrev 50e2a63b04bdd018484605fbb954fd1bd5147fa0
%global _unpackaged_files_terminate_build 0
@@ -265,7 +265,6 @@ Patch10: gcc11-Wno-format-security.patch
Patch11: gcc11-rh1574936.patch
Patch12: gcc11-d-shared-libphobos.patch
Patch13: gcc11-pr99341-revert.patch
-Patch14: gcc11-pr100797.patch
Patch100: gcc11-fortran-fdec-duplicates.patch
Patch101: gcc11-fortran-flogical-as-integer.patch
@@ -789,7 +788,6 @@ to NVidia PTX capable devices if available.
%endif
%patch12 -p0 -b .d-shared-libphobos~
%patch13 -p0 -b .pr99341-revert~
-%patch14 -p0 -b .pr100797~
%if 0%{?rhel} >= 9
%patch100 -p1 -b .fortran-fdec-duplicates~
@@ -3132,7 +3130,26 @@ end
%endif
%changelog
-* Mon Jun 14 2021 Florian Weimer <fweimer@redhat.com> - 11.1.1-4
+* Thu Jun 17 2021 Jakub Jelinek <jakub@redhat.com> 11.1.1-5
+- update from releases/gcc-11-branch
+ - PRs bootstrap/100731, c++/91706, c++/91859, c++/95719, c++/100065,
+ c++/100102, c++/100580, c++/100666, c++/100796, c++/100797,
+ c++/100862, c++/100946, c++/100963, c++/101029, c++/101078, c/100902,
+ c/100920, d/100882, d/100935, d/100964, d/100967, d/100999,
+ debug/100852, fortran/82376, fortran/98301, fortran/99839,
+ fortran/100965, ipa/100791, libstdc++/98842, libstdc++/100475,
+ libstdc++/100577, libstdc++/100631, libstdc++/100639,
+ libstdc++/100676, libstdc++/100690, libstdc++/100768,
+ libstdc++/100770, libstdc++/100824, libstdc++/100833,
+ libstdc++/100889, libstdc++/100894, libstdc++/100900,
+ libstdc++/100982, libstdc++/101034, libstdc++/101055,
+ middle-end/100576, middle-end/100898, middle-end/101009,
+ preprocessor/100646, rtl-optimization/100342, rtl-optimization/100590,
+ rtl-optimization/101008, target/100333, target/100885, target/100887,
+ target/101046, testsuite/100750, tree-optimization/100934,
+ tree-optimization/100981
+
+* Mon Jun 14 2021 Florian Weimer <fweimer@redhat.com> 11.1.1-4
- NVR bump to enable rebuild in side tag
* Mon May 31 2021 Jakub Jelinek <jakub@redhat.com> 11.1.1-3
diff --git a/gcc11-pr100797.patch b/gcc11-pr100797.patch
deleted file mode 100644
index ff85ade..0000000
--- a/gcc11-pr100797.patch
+++ /dev/null
@@ -1,91 +0,0 @@
-2021-05-27 Jason Merrill <jason@redhat.com>
-
- PR c++/100797
- PR c++/95719
- * call.c (build_over_call): Adjust base_binfo in
- resolves_to_fixed_type_p case.
-
- * g++.dg/inherit/virtual15.C: New test.
-
---- gcc/cp/call.c
-+++ gcc/cp/call.c
-@@ -9152,18 +9152,32 @@ build_over_call (struct z_candidate *cand, int flags, tsubst_flags_t complain)
- if (base_binfo == error_mark_node)
- return error_mark_node;
- }
-- tree converted_arg = build_base_path (PLUS_EXPR, arg,
-- base_binfo, 1, complain);
-
- /* If we know the dynamic type of the object, look up the final overrider
- in the BINFO. */
- if (DECL_VINDEX (fn) && (flags & LOOKUP_NONVIRTUAL) == 0
- && resolves_to_fixed_type_p (arg))
- {
-- fn = lookup_vfn_in_binfo (DECL_VINDEX (fn), base_binfo);
-- flags |= LOOKUP_NONVIRTUAL;
-+ tree ov = lookup_vfn_in_binfo (DECL_VINDEX (fn), base_binfo);
-+
-+ /* And unwind base_binfo to match. If we don't find the type we're
-+ looking for in BINFO_INHERITANCE_CHAIN, we're looking at diamond
-+ inheritance; for now do a normal virtual call in that case. */
-+ tree octx = DECL_CONTEXT (ov);
-+ tree obinfo = base_binfo;
-+ while (obinfo && !SAME_BINFO_TYPE_P (BINFO_TYPE (obinfo), octx))
-+ obinfo = BINFO_INHERITANCE_CHAIN (obinfo);
-+ if (obinfo)
-+ {
-+ fn = ov;
-+ base_binfo = obinfo;
-+ flags |= LOOKUP_NONVIRTUAL;
-+ }
- }
-
-+ tree converted_arg = build_base_path (PLUS_EXPR, arg,
-+ base_binfo, 1, complain);
-+
- argarray[j++] = converted_arg;
- parm = TREE_CHAIN (parm);
- if (first_arg != NULL_TREE)
---- gcc/testsuite/g++.dg/inherit/virtual15.C
-+++ gcc/testsuite/g++.dg/inherit/virtual15.C
-@@ -0,0 +1,18 @@
-+// PR c++/100797
-+// { dg-do run }
-+
-+bool ok = false;
-+struct S1 { virtual ~S1() {} };
-+struct S2 { virtual void f1() = 0; };
-+struct S3: S1, S2 {
-+ void f1() { f2(); }
-+ virtual void f2() = 0;
-+};
-+struct S4: S3 {
-+ void f2() { ok = true; }
-+ using S2::f1;
-+};
-+int main() {
-+ S4().f1();
-+ if (!ok) __builtin_abort ();
-+}
---- gcc/testsuite/g++.dg/inherit/virtual15a.C
-+++ gcc/testsuite/g++.dg/inherit/virtual15a.C
-@@ -0,0 +1,19 @@
-+// PR c++/100797 plus diamond inheritance
-+// { dg-do run }
-+
-+bool ok = false;
-+struct S1 { virtual ~S1() {} };
-+struct S2 { virtual void f1() = 0; };
-+struct S3: S1, virtual S2 {
-+ void f1() { f2(); }
-+ virtual void f2() = 0;
-+};
-+struct SX: virtual S2 { };
-+struct S4: SX, S3 {
-+ void f2() { ok = true; }
-+ using S2::f1;
-+};
-+int main() {
-+ S4().f1();
-+ if (!ok) __builtin_abort ();
-+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [rpms/gcc] rhel-f41-base: 11.1.1-5
@ 2026-06-29 12:29 Jakub Jelinek
0 siblings, 0 replies; 2+ messages in thread
From: Jakub Jelinek @ 2026-06-29 12:29 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/gcc
Branch : rhel-f41-base
Commit : db78d97ae57d58a7bf256346c62c3a7d3e642ae4
Author : Jakub Jelinek <jakub@redhat.com>
Date : 2021-06-17T11:02:32+02:00
Stats : +4/-3 in 3 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/db78d97ae57d58a7bf256346c62c3a7d3e642ae4?branch=rhel-f41-base
Log:
11.1.1-5
---
diff --git a/.gitignore b/.gitignore
index b815574..80a9e24 100644
--- a/.gitignore
+++ b/.gitignore
@@ -45,3 +45,4 @@
/gcc-11.1.1-20210428.tar.xz
/gcc-11.1.1-20210512.tar.xz
/gcc-11.1.1-20210531.tar.xz
+/gcc-11.1.1-20210617.tar.xz
diff --git a/gcc.spec b/gcc.spec
index c3ec569..3416e99 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -1,5 +1,5 @@
-%global DATE 20210531
-%global gitrev e8a00355f6fd6fe219de22855d92c351911519da
+%global DATE 20210617
+%global gitrev f7ca2f99f1015466fd59cd72a3dad1080c230f6a
%global gcc_version 11.1.1
%global gcc_major 11
# Note, gcc_release must be integer, if you want to add suffixes to
diff --git a/sources b/sources
index 7c9c540..afa2c19 100644
--- a/sources
+++ b/sources
@@ -1,4 +1,4 @@
-SHA512 (gcc-11.1.1-20210531.tar.xz) = e09a4e70d672c354b8b08660ecbe33cfb0b49fd67a6afb9c1b261aef9a6ed4daf2a15b616d62ce230cd556f6cbbd137038f6a4d109d4a9a84758e7be3a77a93d
+SHA512 (gcc-11.1.1-20210617.tar.xz) = d39082995a1a2dc577b290c44c894ce7f819e30d58ad0697366e38112772a5cb9ea60213db416ce34b4a7f0f0d80dd9087ddab7279bd8018e0e5c20dadf49256
SHA512 (isl-0.18.tar.bz2) = 85d0b40f4dbf14cb99d17aa07048cdcab2dc3eb527d2fbb1e84c41b2de5f351025370e57448b63b2b8a8cf8a0843a089c3263f9baee1542d5c2e1cb37ed39d94
SHA512 (newlib-cygwin-50e2a63b04bdd018484605fbb954fd1bd5147fa0.tar.xz) = 002a48a7b689a81abbf16161bcaec001a842e67dfbe372e9e109092703bfc666675f16198f60ca429370e8850d564547dc505df81bc3aaca4ce6defbc014ad6c
SHA512 (nvptx-tools-5f6f343a302d620b0868edab376c00b15741e39e.tar.xz) = f6d10db94fa1570ae0f94df073fa3c73c8e5ee16d59070b53d94f7db0de8a031bc44d7f3f1852533da04b625ce758e022263855ed43cfc6867e0708d001e53c7
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-06-29 12:29 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:29 [rpms/gcc] rhel-f41-base: 11.1.1-5 Jakub Jelinek
2026-06-29 12:29 Jakub Jelinek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox