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 7840515815E for ; Sat, 3 Feb 2024 07:52:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6863E2B6B; Sat, 3 Feb 2024 07:52:40 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 92C01E2B6B for ; Sat, 3 Feb 2024 07:52:40 +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 B2D333431D1 for ; Sat, 3 Feb 2024 07:52:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 210DA888 for ; Sat, 3 Feb 2024 07:52:38 +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: <1706946737.3ab6b70bf9ee185da7e092e1df20753cdc35d710.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_PR113731-vect-crash.patch X-VCS-Directories: 14.0.0/gentoo/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3ab6b70bf9ee185da7e092e1df20753cdc35d710 X-VCS-Branch: master Date: Sat, 3 Feb 2024 07:52:38 +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: 963fba3b-7626-45f6-be7c-99276fd39e4f X-Archives-Hash: a2d0efe5dad37bf1a7b62c55b0c0b2b9 commit: 3ab6b70bf9ee185da7e092e1df20753cdc35d710 Author: Sam James gentoo org> AuthorDate: Sat Feb 3 07:52:17 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Feb 3 07:52:17 2024 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=3ab6b70b 14.0.0: add PR113731 crash fix Bug: https://gcc.gnu.org/PR113731 Signed-off-by: Sam James gentoo.org> 14.0.0/gentoo/76_all_PR113731-vect-crash.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/14.0.0/gentoo/76_all_PR113731-vect-crash.patch b/14.0.0/gentoo/76_all_PR113731-vect-crash.patch new file mode 100644 index 0000000..671f11f --- /dev/null +++ b/14.0.0/gentoo/76_all_PR113731-vect-crash.patch @@ -0,0 +1,13 @@ +https://gcc.gnu.org/PR113731 +--- a/gcc/tree-vect-loop.cc ++++ b/gcc/tree-vect-loop.cc +@@ -11801,7 +11801,8 @@ move_early_exit_stmts (loop_vec_info loop_vinfo) + + gimple_stmt_iterator stmt_gsi = gsi_for_stmt (stmt); + gsi_move_before (&stmt_gsi, &dest_gsi); +- gsi_prev (&dest_gsi); ++ if (!gsi_end_p (dest_gsi)) ++ gsi_prev (&dest_gsi); + } + + /* Update all the stmts with their new reaching VUSES. */