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: 10.0.1-0.10
Date: Mon, 29 Jun 2026 12:28:41 GMT [thread overview]
Message-ID: <178273612162.1.761405427442092153.rpms-gcc-047162357c43@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/gcc
Branch : rhel-f41-base
Commit : 047162357c43e82c7bd5c08b573156bead75900b
Author : Jakub Jelinek <jakub@redhat.com>
Date : 2020-03-25T12:32:34+01:00
Stats : +24/-0 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/gcc/c/047162357c43e82c7bd5c08b573156bead75900b?branch=rhel-f41-base
Log:
10.0.1-0.10
---
diff --git a/gcc10-pr94254.patch b/gcc10-pr94254.patch
new file mode 100644
index 0000000..408b90a
--- /dev/null
+++ b/gcc10-pr94254.patch
@@ -0,0 +1,24 @@
+2020-03-23 Richard Sandiford <richard.sandiford@arm.com>
+
+ PR target/94254
+ * config/rs6000/rs6000.c (rs6000_can_change_mode_class): Allow
+ FPRs to change between SDmode and DDmode.
+
+--- gcc/config/rs6000/rs6000.c
++++ gcc/config/rs6000/rs6000.c
+@@ -12307,6 +12307,15 @@ rs6000_can_change_mode_class (machine_mode from,
+ if (!BYTES_BIG_ENDIAN && (to == TDmode || from == TDmode))
+ return false;
+
++ /* Allow SD<->DD changes, since SDmode values are stored in
++ the low half of the DDmode, just like target-independent
++ code expects. We need to allow at least SD->DD since
++ rs6000_secondary_memory_needed_mode asks for that change
++ to be made for SD reloads. */
++ if ((to == DDmode && from == SDmode)
++ || (to == SDmode && from == DDmode))
++ return true;
++
+ if (from_size < 8 || to_size < 8)
+ return false;
+
next reply other threads:[~2026-06-29 12:28 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-29 12:28 Jakub Jelinek [this message]
-- strict thread matches above, loose matches on Subject: below --
2026-06-29 12:28 [rpms/gcc] rhel-f41-base: 10.0.1-0.10 Jakub Jelinek
2026-06-29 12:28 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=178273612162.1.761405427442092153.rpms-gcc-047162357c43@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