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 9045C158015 for ; Mon, 25 Dec 2023 17:18:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA5672BC014; Mon, 25 Dec 2023 17:18:55 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6A0D42BC014 for ; Mon, 25 Dec 2023 17:18:55 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A7A1133B864 for ; Mon, 25 Dec 2023 17:18:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 48A1D105D for ; Mon, 25 Dec 2023 17:18: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: <1703524198.5055fa1426b3a9ebab80d799ea30b6c65ad2ac74.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: 5055fa1426b3a9ebab80d799ea30b6c65ad2ac74 X-VCS-Branch: master Date: Mon, 25 Dec 2023 17:18: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: 0ac19238-f0c5-4831-bcec-25da8af22158 X-Archives-Hash: ab47221f370f1334285c738552956799 commit: 5055fa1426b3a9ebab80d799ea30b6c65ad2ac74 Author: Sam James gentoo org> AuthorDate: Mon Dec 25 17:09:58 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Dec 25 17:09:58 2023 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=5055fa14 14.0.0: drop erroneous patch 75_all_Revert-middle-end-explicitly-initialize-vec_stmts-PR.patch reverts something which wasn't in the snapshot (but is a fix for the vect stuff). Signed-off-by: Sam James gentoo.org> ...le-end-explicitly-initialize-vec_stmts-PR.patch | 32 ---------------------- 14.0.0/gentoo/README.history | 4 +++ 2 files changed, 4 insertions(+), 32 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 deleted file mode 100644 index b113f1e..0000000 --- a/14.0.0/gentoo/75_all_Revert-middle-end-explicitly-initialize-vec_stmts-PR.patch +++ /dev/null @@ -1,32 +0,0 @@ -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 ad540db..90ab9ed 100644 --- a/14.0.0/gentoo/README.history +++ b/14.0.0/gentoo/README.history @@ -1,3 +1,7 @@ +13 25 Dec 2023 + + - 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