public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Jakub Jelinek <jakub@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/gcc] rhel-f41-base: 4.1.0-14
Date: Mon, 29 Jun 2026 12:22:28 GMT [thread overview]
Message-ID: <178273574835.1.364051039169251076.rpms-gcc-523e60c801de@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/gcc
Branch : rhel-f41-base
Commit : 523e60c801def5161f3a270875592bf65115c8b2
Author : Jakub Jelinek <jakub@fedoraproject.org>
Date : 2006-05-08T11:07:27+00:00
Stats : +109/-9 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/523e60c801def5161f3a270875592bf65115c8b2?branch=rhel-f41-base
Log:
4.1.0-14
---
diff --git a/.cvsignore b/.cvsignore
index 85c2a1d..3d751e7 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1 +1 @@
-gcc-4.1.0-20060503.tar.bz2
+gcc-4.1.0-20060508.tar.bz2
diff --git a/gcc41-tests.patch b/gcc41-tests.patch
index 2b9c73e..b41f684 100644
--- a/gcc41-tests.patch
+++ b/gcc41-tests.patch
@@ -1,3 +1,13 @@
+2006-05-05 Jakub Jelinek <jakub@redhat.com>
+
+ * gcc.dg/tls/opt-12.c: New test.
+
+2006-04-25 Jakub Jelinek <jakub@redhat.com>
+
+ * gcc.dg/20060425-2.c: New test.
+
+ * g++.dg/opt/pr15054-2.C: New test.
+
2006-04-20 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/execute/20060420-1.c: New test.
@@ -148,3 +158,77 @@
+ abort ();
+ return 0;
+}
+--- gcc/testsuite/g++.dg/opt/pr15054-2.C 2006-04-19 19:21:31.748476000 +0200
++++ gcc/testsuite/g++.dg/opt/pr15054-2.C 2006-04-25 15:55:07.000000000 +0200
+@@ -0,0 +1,39 @@
++// PR middle-end/15054
++
++// { dg-do run }
++// { dg-options "-O2" }
++
++extern "C" void abort (void);
++
++void
++__attribute__((noinline))
++check (long x, long y)
++{
++ if (x != y)
++ abort ();
++}
++
++struct A
++{
++ A() : a(2) { check (a, 2); }
++ ~A() { check (a, 2); }
++private:
++ long a;
++};
++
++class B {
++ long b;
++ B& operator =(const B& );
++public:
++ B (long p) : b(p) { check (b, 6); }
++ B (const B& p) : b(p.b) { check (b, 6); }
++ ~B () { check (b, 6); A obj; check (b, 6); }
++ B foo() { return B(*this); }
++};
++
++int main ()
++{
++ B o(6);
++ o.foo().foo();
++ return 0;
++}
+--- gcc/testsuite/gcc.dg/20060425-2.c 2004-06-24 14:04:38.000000000 -0400
++++ gcc/testsuite/gcc.dg/20060425-2.c 2006-04-25 09:15:04.000000000 -0400
+@@ -0,0 +1,10 @@
++/* { dg-do compile } */
++/* { dg-options "-O2" } */
++
++double
++crashme (double v, double *p)
++{
++ if (v < 0. && *p == 1.)
++ v = 0.;
++ return v;
++}
+--- gcc/testsuite/gcc.dg/tls/opt-12.c 2006-04-19 19:21:31.748476000 +0200
++++ gcc/testsuite/gcc.dg/tls/opt-12.c 2006-05-05 11:01:33.000000000 +0200
+@@ -0,0 +1,16 @@
++/* { dg-do compile } */
++/* { dg-options "-O2" } */
++/* { dg-require-effective-target tls } */
++
++__thread struct
++{
++ int a;
++ char b[32];
++} thr;
++
++int
++main ()
++{
++ __builtin_strcpy (thr.b, "abcd");
++ return 0;
++}
diff --git a/gcc41.spec b/gcc41.spec
index 10f0ae3..9b3393b 100644
--- a/gcc41.spec
+++ b/gcc41.spec
@@ -1,6 +1,6 @@
-%define DATE 20060503
+%define DATE 20060508
%define gcc_version 4.1.0
-%define gcc_release 13
+%define gcc_release 14
%define _unpackaged_files_terminate_build 0
%define multilib_64_archs sparc64 ppc64 s390x x86_64
%ifarch %{ix86} x86_64 ia64
@@ -124,8 +124,10 @@ Patch26: gcc41-pr26729.patch
Patch27: gcc41-rh188944.patch
Patch28: gcc41-rh137200.patch
Patch29: gcc41-rh187450.patch
-Patch30: gcc41-pr27285.patch
-Patch31: gcc41-pr27260.patch
+Patch30: gcc41-pr27260.patch
+Patch31: gcc41-pr27136.patch
+Patch32: gcc41-pr27409.patch
+Patch33: gcc41-pr27421.patch
%define _gnu %{nil}
%ifarch sparc
%define gcc_target_platform sparc64-%{_vendor}-%{_target_os}
@@ -433,8 +435,10 @@ which are required to run programs compiled with the GNAT.
%patch27 -p0 -b .rh188944~
%patch28 -p0 -b .rh137200~
%patch29 -p0 -b .rh187450~
-%patch30 -p0 -b .pr27285~
-%patch31 -p0 -b .pr27260~
+%patch30 -p0 -b .pr27260~
+%patch31 -p0 -b .pr27136~
+%patch32 -p0 -b .pr27409~
+%patch33 -p0 -b .pr27421~
sed -i -e 's/4\.1\.1/4.1.0/' gcc/BASE-VER gcc/version.c
sed -i -e 's/" (Red Hat[^)]*)"/" (Red Hat %{version}-%{gcc_release})"/' gcc/version.c
@@ -1471,6 +1475,18 @@ fi
%doc rpm.doc/changelogs/libmudflap/ChangeLog*
%changelog
+* Mon May 8 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-14
+- update from gcc-4_1-branch (-r113489:113623)
+ - PRs c++/27422, c++/27427, fortran/24813, fortran/25099, fortran/25681,
+ fortran/27269, fortran/27324, libfortran/26985, objc/27240,
+ target/26481, target/26765, tree-optimization/25985,
+ tree-optimization/27151
+- fix zero size field handling in structalias (Richard Guenther,
+ PR tree-optimization/27409)
+- fix PR tree-optimization/27136 (Richard Guenther)
+- fix classification of invalid struct types on x86_64 (Volker Reichelt,
+ PR target/27421)
+
* Wed May 3 2006 Jakub Jelinek <jakub@redhat.com> 4.1.0-13
- update from gcc-4_1-branch (-r113416:113489)
- PRs c/25309, target/27374, target/27387, tree-optimization/27364
@@ -1478,7 +1494,7 @@ fi
-r113452:113456, -r113482:113483, -r113493:113494)
- PR fortran/27395
- additional gomp fixes (PRs c++/27359, middle-end/27388)
-- package SYSCALLS.c.X for protize (#190047)
+- package SYSCALLS.c.X for protoize (#190047)
- fix gcj -fprofile-arcs -ftest-coverage (Alexandre Oliva, #177450)
- reenable profiledbootstrap
- in 64-bit builds remove 32-bit /usr/lib/lib* libraries from the
diff --git a/sources b/sources
index 63859bd..aeecd78 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-3323a7ce54490a3a4253bbd97616e6a2 gcc-4.1.0-20060503.tar.bz2
+79b7e8060f2d18b69d1cff02e0c9b6c8 gcc-4.1.0-20060508.tar.bz2
reply other threads:[~2026-06-29 12:22 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=178273574835.1.364051039169251076.rpms-gcc-523e60c801de@fedoraproject.org \
--to=jakub@fedoraproject.org \
--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