From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 01076158041 for ; Wed, 6 Mar 2024 17:47:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23447E29FB; Wed, 6 Mar 2024 17:47:06 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 08539E29FB for ; Wed, 6 Mar 2024 17:47:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0685934067D for ; Wed, 6 Mar 2024 17:47:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2A25DB3D for ; Wed, 6 Mar 2024 17:47:03 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1709747212.4d92f1b90d9a1f0bfc9280745bd6cfb2fd68a2e8.sam@gentoo> Subject: [gentoo-commits] proj/gcc-patches:master commit in: 14.0.0/gentoo/ X-VCS-Repository: proj/gcc-patches X-VCS-Files: 14.0.0/gentoo/75_all_arm_PR113915-atomics.patch X-VCS-Directories: 14.0.0/gentoo/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4d92f1b90d9a1f0bfc9280745bd6cfb2fd68a2e8 X-VCS-Branch: master Date: Wed, 6 Mar 2024 17:47:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2c400efb-898c-49e3-875f-65bd9f8a01a4 X-Archives-Hash: 24b4b51331ae8b9f62814be6684688fe commit: 4d92f1b90d9a1f0bfc9280745bd6cfb2fd68a2e8 Author: Sam James gentoo org> AuthorDate: Wed Mar 6 17:46:52 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed Mar 6 17:46:52 2024 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=4d92f1b9 14.0.0: drop 75_all_arm_PR113915-atomics.patch Fixed upstream. Signed-off-by: Sam James gentoo.org> 14.0.0/gentoo/75_all_arm_PR113915-atomics.patch | 36 ------------------------- 1 file changed, 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 -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 -