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: 14.2.1-5
Date: Mon, 29 Jun 2026 12:30:43 GMT [thread overview]
Message-ID: <178273624394.1.6000648272764042062.rpms-gcc-3c526fa26bef@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/gcc
Branch : rhel-f41-base
Commit : 3c526fa26bef8d41eeeef476e14bb5fa2c421aa4
Author : Jakub Jelinek <jakub@redhat.com>
Date : 2024-10-25T17:59:54+02:00
Stats : +0/-102 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/3c526fa26bef8d41eeeef476e14bb5fa2c421aa4?branch=rhel-f41-base
Log:
14.2.1-5
---
diff --git a/gcc.spec b/gcc.spec
index 185f371..6b499c8 100644
--- a/gcc.spec
+++ b/gcc.spec
@@ -305,7 +305,6 @@ Patch9: gcc14-Wno-format-security.patch
Patch10: gcc14-rh1574936.patch
Patch11: gcc14-d-shared-libphobos.patch
Patch12: gcc14-pr101523.patch
-Patch13: gcc14-pr116621.patch
Patch50: isl-rh2155127.patch
@@ -907,7 +906,6 @@ so that there cannot be any synchronization problems.
%endif
%patch -P11 -p0 -b .d-shared-libphobos~
%patch -P12 -p1 -b .pr101523~
-%patch -P13 -p0 -b .pr116621~
%patch -P50 -p0 -b .rh2155127~
touch -r isl-0.24/m4/ax_prog_cxx_for_build.m4 isl-0.24/m4/ax_prog_cc_for_build.m4
diff --git a/gcc14-pr116621.patch b/gcc14-pr116621.patch
deleted file mode 100644
index caa9e63..0000000
--- a/gcc14-pr116621.patch
+++ /dev/null
@@ -1,100 +0,0 @@
-Author: H.J. Lu <hjl.tools@gmail.com>
-Date: Fri Sep 6 05:24:07 2024 -0700
-
-x86-64: Don't use temp for argument in a TImode register
-
-Don't use temp for a PARALLEL BLKmode argument of an EXPR_LIST expression
-in a TImode register. Otherwise, the TImode variable will be put in
-the GPR save area which guarantees only 8-byte alignment.
-
- PR target/116621
- * config/i386/i386.cc (ix86_gimplify_va_arg): Don't use temp for
- a PARALLEL BLKmode container of an EXPR_LIST expression in a
- TImode register.
-
- * gcc.target/i386/pr116621.c: New test.
-
-Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
-
---- gcc/config/i386/i386.cc
-+++ gcc/config/i386/i386.cc
-@@ -4908,13 +4908,31 @@ ix86_gimplify_va_arg (tree valist, tree type, gimple_seq *pre_p,
-
- examine_argument (nat_mode, type, 0, &needed_intregs, &needed_sseregs);
-
-- need_temp = (!REG_P (container)
-+ bool container_in_reg = false;
-+ if (REG_P (container))
-+ container_in_reg = true;
-+ else if (GET_CODE (container) == PARALLEL
-+ && GET_MODE (container) == BLKmode
-+ && XVECLEN (container, 0) == 1)
-+ {
-+ /* Check if it is a PARALLEL BLKmode container of an EXPR_LIST
-+ expression in a TImode register. In this case, temp isn't
-+ needed. Otherwise, the TImode variable will be put in the
-+ GPR save area which guarantees only 8-byte alignment. */
-+ rtx x = XVECEXP (container, 0, 0);
-+ if (GET_CODE (x) == EXPR_LIST
-+ && REG_P (XEXP (x, 0))
-+ && XEXP (x, 1) == const0_rtx)
-+ container_in_reg = true;
-+ }
-+
-+ need_temp = (!container_in_reg
- && ((needed_intregs && TYPE_ALIGN (type) > 64)
- || TYPE_ALIGN (type) > 128));
-
- /* In case we are passing structure, verify that it is consecutive block
- on the register save area. If not we need to do moves. */
-- if (!need_temp && !REG_P (container))
-+ if (!need_temp && !container_in_reg)
- {
- /* Verify that all registers are strictly consecutive */
- if (SSE_REGNO_P (REGNO (XEXP (XVECEXP (container, 0, 0), 0))))
---- gcc/testsuite/gcc.target/i386/pr116621.c
-+++ gcc/testsuite/gcc.target/i386/pr116621.c
-@@ -0,0 +1,43 @@
-+/* { dg-do run } */
-+/* { dg-options "-O2" } */
-+
-+#include <stdarg.h>
-+#include <string.h>
-+
-+union S8302
-+{
-+ union
-+ {
-+ double b;
-+ int c;
-+ } a;
-+ long double d;
-+ unsigned short int f[5];
-+};
-+
-+union S8302 s8302;
-+extern void check8302va (int i, ...);
-+
-+int
-+main (void)
-+{
-+ memset (&s8302, '\0', sizeof (s8302));
-+ s8302.a.b = -221438.250000;
-+ check8302va (1, s8302);
-+ return 0;
-+}
-+
-+__attribute__((noinline, noclone))
-+void
-+check8302va (int z, ...)
-+{
-+ union S8302 arg, *p;
-+ va_list ap;
-+
-+ __builtin_va_start (ap, z);
-+ p = &s8302;
-+ arg = __builtin_va_arg (ap, union S8302);
-+ if (p->a.b != arg.a.b)
-+ __builtin_abort ();
-+ __builtin_va_end (ap);
-+}
next reply other threads:[~2026-06-29 12:30 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-29 12:30 Jakub Jelinek [this message]
-- strict thread matches above, loose matches on Subject: below --
2026-06-29 12:30 [rpms/gcc] rhel-f41-base: 14.2.1-5 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=178273624394.1.6000648272764042062.rpms-gcc-3c526fa26bef@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