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.3.1-3
Date: Mon, 29 Jun 2026 12:23:49 GMT [thread overview]
Message-ID: <178273582909.1.16631023870611946533.rpms-gcc-5d277e24e643@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/gcc
Branch : rhel-f41-base
Commit : 5d277e24e643b45f0496866502ffa28c836246fe
Author : Jakub Jelinek <jakub@fedoraproject.org>
Date : 2008-06-24T12:20:15+00:00
Stats : +15/-144 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/5d277e24e643b45f0496866502ffa28c836246fe?branch=rhel-f41-base
Log:
4.3.1-3
---
diff --git a/.cvsignore b/.cvsignore
index 0b97251..67f1b14 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -1,2 +1,2 @@
-gcc-4.3.1-20080612.tar.bz2
+gcc-4.3.1-20080624.tar.bz2
fastjar-0.95.tar.gz
diff --git a/gcc43-pr36507.patch b/gcc43-pr36507.patch
deleted file mode 100644
index fe28bb1..0000000
--- a/gcc43-pr36507.patch
+++ /dev/null
@@ -1,138 +0,0 @@
-2008-06-12 Jakub Jelinek <jakub@redhat.com>
-
- PR c/36507
- * c-decl.c (merge_decls): Don't clear DECL_EXTERNAL for
- nested inline functions.
- (start_decl, start_function): Don't invert DECL_EXTERNAL
- for nested inline functions.
-
- * gcc.dg/inline-28.c: New test.
- * gcc.dg/inline-29.c: New test.
- * gcc.dg/inline-30.c: New test.
-
---- gcc/c-decl.c.jj 2008-05-08 01:06:20.000000000 +0200
-+++ gcc/c-decl.c 2008-06-12 17:40:19.000000000 +0200
-@@ -1763,7 +1763,9 @@ merge_decls (tree newdecl, tree olddecl,
- || !DECL_DECLARED_INLINE_P (olddecl)
- || !DECL_EXTERNAL (olddecl))
- && DECL_EXTERNAL (newdecl)
-- && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl)))
-+ && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl))
-+ && (DECL_CONTEXT (newdecl) == NULL_TREE
-+ || TREE_CODE (DECL_CONTEXT (newdecl)) != FUNCTION_DECL))
- DECL_EXTERNAL (newdecl) = 0;
-
- if (DECL_EXTERNAL (newdecl))
-@@ -3264,7 +3266,8 @@ start_decl (struct c_declarator *declara
- if (declspecs->inline_p
- && !flag_gnu89_inline
- && TREE_CODE (decl) == FUNCTION_DECL
-- && lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl)))
-+ && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl))
-+ || current_function_decl))
- {
- if (declspecs->storage_class == csc_auto && current_scope != file_scope)
- ;
-@@ -6094,7 +6097,8 @@ start_function (struct c_declspecs *decl
- if (declspecs->inline_p
- && !flag_gnu89_inline
- && TREE_CODE (decl1) == FUNCTION_DECL
-- && lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1)))
-+ && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1))
-+ || current_function_decl))
- {
- if (declspecs->storage_class != csc_static)
- DECL_EXTERNAL (decl1) = !DECL_EXTERNAL (decl1);
---- gcc/testsuite/gcc.dg/inline-28.c.jj 2008-06-12 17:19:10.000000000 +0200
-+++ gcc/testsuite/gcc.dg/inline-28.c 2008-06-12 18:21:03.000000000 +0200
-@@ -0,0 +1,28 @@
-+/* PR c/36507 */
-+/* { dg-do run } */
-+/* { dg-options "-O0 -std=gnu89" } */
-+
-+int
-+main (void)
-+{
-+ int i = 2;
-+ auto inline int f1 (void)
-+ {
-+ return i;
-+ }
-+ inline int f2 (void)
-+ {
-+ return i;
-+ }
-+ auto inline int f3 (void);
-+ auto inline int f3 (void)
-+ {
-+ return i;
-+ }
-+ auto inline int f4 (void);
-+ inline int f4 (void)
-+ {
-+ return i;
-+ }
-+ return f1 () + f2 () + f3 () + f4 () - 8;
-+}
---- gcc/testsuite/gcc.dg/inline-29.c.jj 2008-06-12 17:19:10.000000000 +0200
-+++ gcc/testsuite/gcc.dg/inline-29.c 2008-06-12 18:21:08.000000000 +0200
-@@ -0,0 +1,28 @@
-+/* PR c/36507 */
-+/* { dg-do run } */
-+/* { dg-options "-O0 -std=gnu99" } */
-+
-+int
-+main (void)
-+{
-+ int i = 2;
-+ auto inline int f1 (void)
-+ {
-+ return i;
-+ }
-+ inline int f2 (void)
-+ {
-+ return i;
-+ }
-+ auto inline int f3 (void);
-+ auto inline int f3 (void)
-+ {
-+ return i;
-+ }
-+ auto inline int f4 (void);
-+ inline int f4 (void)
-+ {
-+ return i;
-+ }
-+ return f1 () + f2 () + f3 () + f4 () - 8;
-+}
---- gcc/testsuite/gcc.dg/inline-30.c.jj 2008-06-12 17:19:10.000000000 +0200
-+++ gcc/testsuite/gcc.dg/inline-30.c 2008-06-12 18:21:13.000000000 +0200
-@@ -0,0 +1,28 @@
-+/* PR c/36507 */
-+/* { dg-do run } */
-+/* { dg-options "-O0 -std=gnu99 -fgnu89-inline" } */
-+
-+int
-+main (void)
-+{
-+ int i = 2;
-+ auto inline int f1 (void)
-+ {
-+ return i;
-+ }
-+ inline int f2 (void)
-+ {
-+ return i;
-+ }
-+ auto inline int f3 (void);
-+ auto inline int f3 (void)
-+ {
-+ return i;
-+ }
-+ auto inline int f4 (void);
-+ inline int f4 (void)
-+ {
-+ return i;
-+ }
-+ return f1 () + f2 () + f3 () + f4 () - 8;
-+}
diff --git a/gcc43.spec b/gcc43.spec
index 27a0b02..26d5483 100644
--- a/gcc43.spec
+++ b/gcc43.spec
@@ -1,6 +1,6 @@
-%define DATE 20080612
+%define DATE 20080624
%define gcc_version 4.3.1
-%define gcc_release 2
+%define gcc_release 3
%define _unpackaged_files_terminate_build 0
%define multilib_64_archs sparc64 ppc64 s390x x86_64
%define include_gappletviewer 1
@@ -143,7 +143,6 @@ Patch13: gcc43-i386-libgomp.patch
Patch14: gcc43-rh251682.patch
Patch15: gcc43-sparc-config-detection.patch
Patch16: gcc43-libgomp-omp_h-multilib.patch
-Patch17: gcc43-pr36507.patch
# On ARM EABI systems, we do want -gnueabi to be part of the
# target triple.
@@ -444,7 +443,6 @@ which are required to run programs compiled with the GNAT.
%patch14 -p0 -b .rh251682~
%patch15 -p0 -b .sparc-config-detection~
%patch16 -p0 -b .libgomp-omp_h-multilib~
-%patch17 -p0 -b .pr36507~
tar xzf %{SOURCE4}
@@ -1666,6 +1664,17 @@ fi
%doc rpm.doc/changelogs/libmudflap/ChangeLog*
%changelog
+* Tue Jun 24 2008 Jakub Jelinek <jakub@redhat.com> 4.3.1-3
+- update from gcc-4_3-branch
+ - PRs c++/35317, c++/35320, documentation/30739, fortran/34908,
+ fortran/36276, fortran/36538, java/36247, middle-end/36584,
+ rtl-optimization/35604, target/36336, target/36424,
+ tree-optimization/36493, tree-optimization/36498,
+ tree-optimization/36504, tree-optimization/36519
+ - don't mark hard registers as reg pointers (#451068, target/36533)
+ - allow more compute_antic iterations (#450889, tree-optimization/36508)
+- fix #pragma omp task copyfn registration with cgraph (c++/36523)
+
* Thu Jun 12 2008 Jakub Jelinek <jakub@redhat.com> 4.3.1-2
- update from gcc-4_3-branch
- PRs c++/36408, middle-end/35336, middle-end/36506, testsuite/36443,
diff --git a/sources b/sources
index 37b8327..061cb22 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-6ebb8dce59c6e2cb49992fa96fef66ee gcc-4.3.1-20080612.tar.bz2
+af2acae86f463116d48a4a4e8dd890f9 gcc-4.3.1-20080624.tar.bz2
92a70f9e56223b653bce0f58f90cf950 fastjar-0.95.tar.gz
reply other threads:[~2026-06-29 12:23 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=178273582909.1.16631023870611946533.rpms-gcc-5d277e24e643@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