public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Richard Biener <rguenth@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc r13-8684] tree-optimization/114749 - reset partial vector decision for no-SLP retry
Date: Fri,  3 May 2024 13:55:31 +0000 (GMT)	[thread overview]
Message-ID: <20240503135531.BAB713846024@sourceware.org> (raw)

https://gcc.gnu.org/g:704b15e277a8792ac4cd6008ee08bec4b047a3e6

commit r13-8684-g704b15e277a8792ac4cd6008ee08bec4b047a3e6
Author: Richard Biener <rguenther@suse.de>
Date:   Wed Apr 17 10:40:04 2024 +0200

    tree-optimization/114749 - reset partial vector decision for no-SLP retry
    
    The following makes sure to reset LOOP_VINFO_USING_PARTIAL_VECTORS_P
    to its default of false when re-trying without SLP as otherwise
    analysis may run into bogus asserts.
    
            PR tree-optimization/114749
            * tree-vect-loop.cc (vect_analyze_loop_2): Reset
            LOOP_VINFO_USING_PARTIAL_VECTORS_P when re-trying without SLP.
    
    (cherry picked from commit bf2b5231312e1cea45732cb8df6ffa2b2c9115b6)

Diff:
---
 gcc/tree-vect-loop.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gcc/tree-vect-loop.cc b/gcc/tree-vect-loop.cc
index 73caeb283e3..8bb2e3ff1c8 100644
--- a/gcc/tree-vect-loop.cc
+++ b/gcc/tree-vect-loop.cc
@@ -2957,6 +2957,7 @@ again:
   LOOP_VINFO_VERSIONING_THRESHOLD (loop_vinfo) = 0;
   LOOP_VINFO_CAN_USE_PARTIAL_VECTORS_P (loop_vinfo)
     = saved_can_use_partial_vectors_p;
+  LOOP_VINFO_USING_PARTIAL_VECTORS_P (loop_vinfo) = false;
 
   goto start_over;
 }

                 reply	other threads:[~2024-05-03 13:55 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240503135531.BAB713846024@sourceware.org \
    --to=rguenth@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).