From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1666) id C29AA385828E; Fri, 23 Feb 2024 07:31:40 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C29AA385828E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1708673500; bh=8VG9eXJ5I8gGW6dotmoKHBFdPhdQio4RHjGH4fGMHyU=; h=From:To:Subject:Date:From; b=ULurJ+eKZZX0FUtvoCGqQTSwejZjusilRagSG3hNx8MTPuRPBvZQFhKwtE7XqB61K folGOO8Jmh+uEtP5FdvuvD97IY0TD7byxEVWrODWjuCv6c/lrn25XSYeaBClAH1gvf GAC+gh3+N9YelbSblUjuyCaMBnXDfy8rtflXHueU= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Richard Biener To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/rguenth/heads/vect-force-slp)] Add FIXME note regarding gcc.dg/vect/pr60276.c runfail with single-lane SLP X-Act-Checkin: gcc X-Git-Author: Richard Biener X-Git-Refname: refs/users/rguenth/heads/vect-force-slp X-Git-Oldrev: 04db3df8cfcdb26291ca65ca4ec6f47e4356c260 X-Git-Newrev: 69d5454023f202998f91fcd8d66f14b74dcc781c Message-Id: <20240223073140.C29AA385828E@sourceware.org> Date: Fri, 23 Feb 2024 07:31:40 +0000 (GMT) List-Id: https://gcc.gnu.org/g:69d5454023f202998f91fcd8d66f14b74dcc781c commit 69d5454023f202998f91fcd8d66f14b74dcc781c Author: Richard Biener Date: Wed Oct 4 14:34:18 2023 +0200 Add FIXME note regarding gcc.dg/vect/pr60276.c runfail with single-lane SLP * tree-vect-stmts.cc (vectorizable_load): Add FIXME to PR60276 fix. Diff: --- gcc/tree-vect-stmts.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gcc/tree-vect-stmts.cc b/gcc/tree-vect-stmts.cc index 239232fcce63..3020f3a6766c 100644 --- a/gcc/tree-vect-stmts.cc +++ b/gcc/tree-vect-stmts.cc @@ -9927,6 +9927,11 @@ vectorizable_load (vec_info *vinfo, /* Invalidate assumptions made by dependence analysis when vectorization on the unrolled body effectively re-orders stmts. */ + /* ??? This fails to trigger with single-lane SLP, gcc.dg/vect/pr60276.c, + but simply removing the ncopies > 1 conditional here (and below) will + cause FAILs of gcc.dg/vect/no-vfa-vect-depend-3.c and + gcc.dg/vect/tsvc/vect-tsvc-s3251.c. The original fix (for PR60276) + needs to be re-thought. */ if (ncopies > 1 && STMT_VINFO_MIN_NEG_DIST (stmt_info) != 0 && maybe_gt (LOOP_VINFO_VECT_FACTOR (loop_vinfo),