From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id E03CB1584F2 for ; Fri, 14 Mar 2025 13:37:32 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id CC4A134301B for ; Fri, 14 Mar 2025 13:37:32 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id C35AD1103C7; Fri, 14 Mar 2025 13:37:31 +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)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id B7D171103C7 for ; Fri, 14 Mar 2025 13:37:31 +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 62DE334301B for ; Fri, 14 Mar 2025 13:37:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BEC1D1772 for ; Fri, 14 Mar 2025 13:37:29 +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: <1741959436.117d5d309ef1c5e11687e9e0a7e2965dcd9e1a1e.sam@gentoo> Subject: [gentoo-commits] proj/gcc-patches:master commit in: 15.0.0/gentoo/ X-VCS-Repository: proj/gcc-patches X-VCS-Files: 15.0.0/gentoo/77_all_PR119287-linux.patch 15.0.0/gentoo/README.history X-VCS-Directories: 15.0.0/gentoo/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 117d5d309ef1c5e11687e9e0a7e2965dcd9e1a1e X-VCS-Branch: master Date: Fri, 14 Mar 2025 13:37:29 +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: c2669e66-0681-4408-8f41-3098685b9ca7 X-Archives-Hash: e35889760812a277884f27a9aa994e70 commit: 117d5d309ef1c5e11687e9e0a7e2965dcd9e1a1e Author: Sam James gentoo org> AuthorDate: Fri Mar 14 13:37:16 2025 +0000 Commit: Sam James gentoo org> CommitDate: Fri Mar 14 13:37:16 2025 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=117d5d30 15.0.0: fix linux (and libtiff) build Bug: https://gcc.gnu.org/PR119287 Signed-off-by: Sam James gentoo.org> 15.0.0/gentoo/77_all_PR119287-linux.patch | 28 ++++++++++++++++++++++++++++ 15.0.0/gentoo/README.history | 1 + 2 files changed, 29 insertions(+) diff --git a/15.0.0/gentoo/77_all_PR119287-linux.patch b/15.0.0/gentoo/77_all_PR119287-linux.patch new file mode 100644 index 0000000..916edfa --- /dev/null +++ b/15.0.0/gentoo/77_all_PR119287-linux.patch @@ -0,0 +1,28 @@ +From f58aa2cfa49c226f7233995e5359954512ee97c0 Mon Sep 17 00:00:00 2001 +Message-ID: +From: Sam James +Date: Fri, 14 Mar 2025 13:36:44 +0000 +Subject: [PATCH] PR119287 + +--- + gcc/match.pd | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gcc/match.pd b/gcc/match.pd +index 89612d1b15b6..98f637373242 100644 +--- a/gcc/match.pd ++++ b/gcc/match.pd +@@ -5284,7 +5284,7 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT) + || tree_int_cst_sgn (@2) >= 0) + && wi::to_wide (@3) == wi::set_bit_in_zero (shift, prec)) + (with { auto mask = wide_int::from (wi::to_wide (@2), prec, UNSIGNED); } +- (bit_and @0 { wide_int_to_tree (type, mask << shift); })))))) ++ (bit_and (convert @0) { wide_int_to_tree (type, mask << shift); })))))) + + /* ~(~X >> Y) -> X >> Y (for arithmetic shift). */ + (simplify + +base-commit: 5abe571e0276fafcc6eed27c27abb28943e67c6f +-- +2.48.1 + diff --git a/15.0.0/gentoo/README.history b/15.0.0/gentoo/README.history index c66ebe8..0bfc61e 100644 --- a/15.0.0/gentoo/README.history +++ b/15.0.0/gentoo/README.history @@ -1,5 +1,6 @@ 47 ???? + + 77_all_PR119287-linux.patch - 80_all_PR81358-Enable-automatic-linking-of-libatomic.patch 46 17 February 2025