From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 2EB873950C30; Mon, 31 Aug 2020 11:40:35 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2EB873950C30 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1598874035; bh=OeQRWTsM4hZJiUjMCNHKn45aV4s8ojaUqlH/YUwkg3Q=; h=From:To:Subject:Date:In-Reply-To:References:From; b=QfoTHXLgQjp7Ph78/vzMnfCOi1ImPXr1UEHgJp8vf2tthMw7/dOvGxg9VSKq2yEzH yj4OoakqqhTdpXHNUrgx3joC4R0hiMInFerTG/KY0AZAMVsuflSPnp8SYWqyPax41K 9ugTPAKYPITl/6JX5g2KeCN/Picyzfvr52THwxl0= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/96854] [10 Regression] avx vectorizer breaks complex arithmetic Date: Mon, 31 Aug 2020 11:40:29 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 10.2.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 10.3 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Aug 2020 11:40:35 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D96854 --- Comment #8 from CVS Commits --- The releases/gcc-10 branch has been updated by Richard Biener : https://gcc.gnu.org/g:9f980cdba9e2fc0cc3f50c2c790f53b4dcd9dbe5 commit r10-8693-g9f980cdba9e2fc0cc3f50c2c790f53b4dcd9dbe5 Author: Richard Biener Date: Mon Aug 31 13:36:09 2020 +0200 tree-optimization/96854 - SLP reduction of two-operator is broken This fixes SLP reduction of two-operator operations by marking those not supported. In fact any live lane out of such an operation cannot be code-generated correctly. 2020-08-31 Richard Biener PR tree-optimization/96854 * tree-vect-loop.c (vectorizable_live_operation): Disallow SLP_TREE_TWO_OPERATORS nodes. * gcc.dg/vect/pr96854.c: New testcase.=