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 2891715815E for ; Sat, 3 Feb 2024 00:09:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6394AE2A03; Sat, 3 Feb 2024 00:09:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 45EFDE2A03 for ; Sat, 3 Feb 2024 00:09:56 +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 6C5913431B6 for ; Sat, 3 Feb 2024 00:09:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AEE97358 for ; Sat, 3 Feb 2024 00:09:53 +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: <1706918929.e000e7f8aad97476d77372cc0ef8791901de1195.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/76_all_PR113467-vect-miscompile.patch X-VCS-Directories: 14.0.0/gentoo/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e000e7f8aad97476d77372cc0ef8791901de1195 X-VCS-Branch: master Date: Sat, 3 Feb 2024 00:09:53 +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: 902d4e54-9f7d-4a4e-8a01-1156688a29e4 X-Archives-Hash: 2adfa115feac2c83e872d3a5134662df commit: e000e7f8aad97476d77372cc0ef8791901de1195 Author: Sam James gentoo org> AuthorDate: Sat Feb 3 00:08:49 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Feb 3 00:08:49 2024 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=e000e7f8 14.0.0: drop 76_all_PR113467-vect-miscompile.patch Fixed upstream so we don't need this workaround anymore. Bug: https://gcc.gnu.org/PR113467 Signed-off-by: Sam James gentoo.org> 14.0.0/gentoo/76_all_PR113467-vect-miscompile.patch | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/14.0.0/gentoo/76_all_PR113467-vect-miscompile.patch b/14.0.0/gentoo/76_all_PR113467-vect-miscompile.patch deleted file mode 100644 index aee5ddf..0000000 --- a/14.0.0/gentoo/76_all_PR113467-vect-miscompile.patch +++ /dev/null @@ -1,15 +0,0 @@ -https://gcc.gnu.org/PR113467 - -Disable early-exit peeling variants. ---- a/gcc/tree-vect-loop.cc -+++ b/gcc/tree-vect-loop.cc -@@ -998,6 +998,9 @@ vec_init_loop_exit_info (class loop *loop) - } - } - -+ if (candidate && candidate->src != EDGE_PRED (loop->latch, 0)->src) -+ return NULL; -+ - return candidate; - } -