aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-02-07 19:01:36 +0000
committerSam James <sam@gentoo.org>2024-02-07 19:01:36 +0000
commit31395f8bba7e15cd156c631946646f7c7799540d (patch)
tree488d0ce537bb48319f1f9eac82cc981b08607638
parent14.0.0: cut patchset 19 (diff)
downloadgcc-patches-31395f8bba7e15cd156c631946646f7c7799540d.tar.gz
gcc-patches-31395f8bba7e15cd156c631946646f7c7799540d.tar.bz2
gcc-patches-31395f8bba7e15cd156c631946646f7c7799540d.zip
14.0.0: drop upstream 76_all_PR113731-vect-crash.patch
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--14.0.0/gentoo/76_all_PR113731-vect-crash.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/14.0.0/gentoo/76_all_PR113731-vect-crash.patch b/14.0.0/gentoo/76_all_PR113731-vect-crash.patch
deleted file mode 100644
index 671f11f..0000000
--- a/14.0.0/gentoo/76_all_PR113731-vect-crash.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-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. */