From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 4337138582AD; Thu, 18 Jan 2024 07:52:30 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4337138582AD DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1705564350; bh=7AygxtW80tU0qL+nr8KPETaun/8nXrBQd0Qry+NnheQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=A95b/qmfrLPFDAar1wDYENqZR8ZHniJK16hINxGfHIk+2ig2DmeI+sqLKvJrq+6s9 8PSMZZs80E//GdjQ/NoovniLLVUad0dEAiEUj3hw6vP25uUlbeo73lgo1syvms2Eiq 8Mewr+fh7acjapwT4fqp/+yJe6ygivBV0tN6BP1A= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/112774] Vectorize the loop by inferring nonwrapping information from arrays Date: Thu, 18 Jan 2024 07:52:30 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D112774 --- Comment #3 from GCC Commits --- The master branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:484f48f03cf9a382b3bcf4dadac09c4ee59c2ddf commit r14-8210-g484f48f03cf9a382b3bcf4dadac09c4ee59c2ddf Author: Jakub Jelinek Date: Thu Jan 18 08:51:53 2024 +0100 testsuite: Fix up scev-16.c test [PR113446] This test FAILs on i686-linux or e.g. sparc*-solaris*, because it uses vect_int effective target outside of */vect/ testsuite. That is wrong, vect_int assumes the extra added flags by vect.exp by default, which aren't added in other testsuites. The following patch fixes that by moving the test into gcc.dg/vect/ and doing small tweaks. 2024-01-18 Jakub Jelinek PR tree-optimization/112774 PR testsuite/113446 * gcc.dg/tree-ssa/scev-16.c: Move test ... * gcc.dg/vect/pr112774.c: ... here. Add PR comment line, use dg-additional-options instead of dg-options and drop -fdump-tree-vect-details.=