aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-03-06 17:46:52 +0000
committerSam James <sam@gentoo.org>2024-03-06 17:46:52 +0000
commit4d92f1b90d9a1f0bfc9280745bd6cfb2fd68a2e8 (patch)
treeb399124b720d75e5ecf22cecaa092424e0d29e00
parent14.0.0: add 76_all_ppc_PR112868-no-checking-many.patch (diff)
downloadgcc-patches-4d92f1b90d9a1f0bfc9280745bd6cfb2fd68a2e8.tar.gz
gcc-patches-4d92f1b90d9a1f0bfc9280745bd6cfb2fd68a2e8.tar.bz2
gcc-patches-4d92f1b90d9a1f0bfc9280745bd6cfb2fd68a2e8.zip
14.0.0: drop 75_all_arm_PR113915-atomics.patch
Fixed upstream. Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--14.0.0/gentoo/75_all_arm_PR113915-atomics.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/14.0.0/gentoo/75_all_arm_PR113915-atomics.patch b/14.0.0/gentoo/75_all_arm_PR113915-atomics.patch
deleted file mode 100644
index 82fa84a..0000000
--- a/14.0.0/gentoo/75_all_arm_PR113915-atomics.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 9b1d9f15e7ecfd7d27a2bb878efb6577741eecaa Mon Sep 17 00:00:00 2001
-From: Sam James <sam@gentoo.org>
-Date: Sun, 18 Feb 2024 22:58:51 +0000
-Subject: [PATCH] arm: fix inconsistency between atomic patterns and expected
- attributes
-
-Apply workaround patch from Andrew Pinski at https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113915#c9.
-
-Bug: https://gcc.gnu.org/PR113915
-Bug: https://bugs.gentoo.org/924237
----
- gcc/config/arm/arm.cc | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/gcc/config/arm/arm.cc b/gcc/config/arm/arm.cc
-index 1cd69268ee98..9f0d2405b905 100644
---- a/gcc/config/arm/arm.cc
-+++ b/gcc/config/arm/arm.cc
-@@ -25614,11 +25614,12 @@ arm_final_prescan_insn (rtx_insn *insn)
-
- case INSN:
- /* Instructions using or affecting the condition codes make it
-- fail. */
-+ fail or ones which cannot be predicable. */
- scanbody = PATTERN (this_insn);
- if (!(GET_CODE (scanbody) == SET
- || GET_CODE (scanbody) == PARALLEL)
-- || get_attr_conds (this_insn) != CONDS_NOCOND)
-+ || get_attr_conds (this_insn) != CONDS_NOCOND
-+ || get_attr_predicable (this_insn) != PREDICABLE_YES)
- fail = TRUE;
- break;
-
---
-2.43.2
-