From: Richard Sandiford Date: Tue, 31 Dec 2019 15:32:06 +0000 (+0000) Subject: Fix EXTRACT_LAST_REDUCTION segfault X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dc176c3ccd6a8cd3f809f3c1549ad00674061eb5;p=gcc.git Fix EXTRACT_LAST_REDUCTION segfault This code: /* Make sure we don't accidentally use the old condition. */ cond_expr = NULL_TREE; was misplaced, since it triggered even when we needed to force the original unmodified cond_expr into a mask temporary and then invert it. 2019-12-31 Richard Sandiford gcc/ * tree-vect-stmts.c (vectorizable_condition): Only nullify cond_expr if we've created a new condition. Don't nullify it if we've decided to keep it and then invert the result. gcc/testsuite/ * gcc.dg/vect/vect-cond-reduc-6.c: New test. From-SVN: r279804 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a75b9012e58..9f5782fd458 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2020-12-31 Richard Sandiford + + * tree-vect-stmts.c (vectorizable_condition): Only nullify cond_expr + if we've created a new condition. Don't nullify it if we've decided + to keep it and then invert the result. + 2020-12-31 Richard Sandiford * tree-vect-loop-manip.c (create_lcssa_for_virtual_phi): Return diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 097c61d6f7d..b3211aafefc 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2020-12-31 Richard Sandiford + + * gcc.dg/vect/vect-cond-reduc-6.c: New test. + 2020-12-31 Richard Sandiford * gcc.dg/vect/vect-epilogues-2.c: New test. diff --git a/gcc/testsuite/gcc.dg/vect/vect-cond-reduc-6.c b/gcc/testsuite/gcc.dg/vect/vect-cond-reduc-6.c new file mode 100644 index 00000000000..f1a2209a719 --- /dev/null +++ b/gcc/testsuite/gcc.dg/vect/vect-cond-reduc-6.c @@ -0,0 +1,10 @@ +/* { dg-do compile } */ + +int +f (int *y) +{ + int res = 0; + for (int i = 0; i < 100; ++i) + res = (y[i] & 1) == 0 && (y[i] < 10) ? res : 1; + return res; +} diff --git a/gcc/tree-vect-stmts.c b/gcc/tree-vect-stmts.c index d4468083cd0..0ce97935f44 100644 --- a/gcc/tree-vect-stmts.c +++ b/gcc/tree-vect-stmts.c @@ -10033,10 +10033,12 @@ vectorizable_condition (stmt_vec_info stmt_info, gimple_stmt_iterator *gsi, if (new_code == ERROR_MARK) must_invert_cmp_result = true; else - cond_code = new_code; + { + cond_code = new_code; + /* Make sure we don't accidentally use the old condition. */ + cond_expr = NULL_TREE; + } } - /* Make sure we don't accidentally use the old condition. */ - cond_expr = NULL_TREE; std::swap (then_clause, else_clause); }