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 F30A7158015 for ; Tue, 26 Dec 2023 18:51:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 38BAD2BC014; Tue, 26 Dec 2023 18:51:37 +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 071172BC014 for ; Tue, 26 Dec 2023 18:51:36 +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 C2D91335DEB for ; Tue, 26 Dec 2023 18:51:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 30EAC1492 for ; Tue, 26 Dec 2023 18:51:34 +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: <1703616691.3dc22ec055dae66d6f92b138ae946f284d0a6abb.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_Revert-middle-end-explicitly-initialize-vec_stmts-PR.patch 14.0.0/gentoo/README.history X-VCS-Directories: 14.0.0/gentoo/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3dc22ec055dae66d6f92b138ae946f284d0a6abb X-VCS-Branch: master Date: Tue, 26 Dec 2023 18:51:34 +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: fe8f4e58-6e5d-4355-aa7f-7f1971c29b7d X-Archives-Hash: 7741b5fa6162fbbd406cfb38955b9d94 commit: 3dc22ec055dae66d6f92b138ae946f284d0a6abb Author: Sam James gentoo org> AuthorDate: Tue Dec 26 18:51:09 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue Dec 26 18:51:31 2023 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=3dc22ec0 Revert "14.0.0: drop erroneous patch" This reverts commit 5055fa1426b3a9ebab80d799ea30b6c65ad2ac74. We need this for master/9999. Signed-off-by: Sam James gentoo.org> ...le-end-explicitly-initialize-vec_stmts-PR.patch | 32 ++++++++++++++++++++++ 14.0.0/gentoo/README.history | 5 ++-- 2 files changed, 34 insertions(+), 3 deletions(-) diff --git a/14.0.0/gentoo/75_all_Revert-middle-end-explicitly-initialize-vec_stmts-PR.patch b/14.0.0/gentoo/75_all_Revert-middle-end-explicitly-initialize-vec_stmts-PR.patch new file mode 100644 index 0000000..b113f1e --- /dev/null +++ b/14.0.0/gentoo/75_all_Revert-middle-end-explicitly-initialize-vec_stmts-PR.patch @@ -0,0 +1,32 @@ +From a648fe2c0121414ac82926e9f8a70b33e347b930 Mon Sep 17 00:00:00 2001 +From: Sam James +Date: Mon, 25 Dec 2023 16:57:10 +0000 +Subject: [PATCH 1/7] Revert "middle-end: explicitly initialize vec_stmts + [PR113132]" + +This reverts commit fd032cce216e003d58b2394f7e61b03dee27e81a. + +Bug: https://gcc.gnu.org/PR113135 +Bug: https://gcc.gnu.org/PR113136 +Bug: https://gcc.gnu.org/PR113137 +Signed-off-by: Sam James +--- + gcc/tree-vect-loop.cc | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/gcc/tree-vect-loop.cc b/gcc/tree-vect-loop.cc +index f51ae3e719e7..88261a3a4f57 100644 +--- a/gcc/tree-vect-loop.cc ++++ b/gcc/tree-vect-loop.cc +@@ -6207,7 +6207,7 @@ vect_create_epilog_for_reduction (loop_vec_info loop_vinfo, + exit_bb = loop_exit->dest; + exit_gsi = gsi_after_labels (exit_bb); + reduc_inputs.create (slp_node ? vec_num : ncopies); +- vec vec_stmts = vNULL; ++ vec vec_stmts; + for (unsigned i = 0; i < vec_num; i++) + { + gimple_seq stmts = NULL; +-- +2.43.0 + diff --git a/14.0.0/gentoo/README.history b/14.0.0/gentoo/README.history index 90ab9ed..b0f3170 100644 --- a/14.0.0/gentoo/README.history +++ b/14.0.0/gentoo/README.history @@ -1,10 +1,9 @@ -13 25 Dec 2023 +13 ?? ??? ???? - - 75_all_Revert-middle-end-explicitly-initialize-vec_stmts-PR.patch + + 75_all_Revert-middle-end-explicitly-initialize-vec_stmts-PR.patch 12 25 Dec 2023 - + 75_all_Revert-middle-end-explicitly-initialize-vec_stmts-PR.patch + 76_all_Revert-testsuite-un-xfail-TSVC-loops-that-check-for-.patch + 77_all_Revert-testsuite-Add-tests-for-early-break-vectoriza.patch + 78_all_Revert-AArch64-Add-implementation-for-vector-cbranch.patch