From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 62AEF3858D39; Thu, 29 Jun 2023 08:14:03 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 62AEF3858D39 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1688026443; bh=OEdlNbgOjBFIaPk+izaP2wZ5cdT3EoR/sXRbvY998Ms=; h=From:To:Subject:Date:In-Reply-To:References:From; b=iWRDXaDKuNDGUSgVpPpZJ8CStwdIVmujlYtQ/W7OVxiaaqRnoeBHnqA+qv/0qsAWk N4BUsf3Tz2Q3kqr/kPKhr7GIYMzMV0PagDWKOfA+BHi1eTL2XLhoueEuV4jt/30k5m x13I9NNs/Ppyr7VVsgTRyfgq9/CgAR91OUPVm4ps= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/110461] [14 regression] ICE when building openh264 with new vector_type checking Date: Thu, 29 Jun 2023 08:14:03 +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: ice-on-valid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 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=3D110461 --- Comment #13 from CVS Commits --- The master branch has been updated by Richard Biener : https://gcc.gnu.org/g:1e6f1659bd7337e91a88086f8092ada01e80ac94 commit r14-2182-g1e6f1659bd7337e91a88086f8092ada01e80ac94 Author: Richard Biener Date: Thu Jun 29 09:15:27 2023 +0200 middle-end/110461 - pattern applying wrongly to vectors The following guards a match.pd pattern that wasn't supposed to apply to vectors and thus runs into TYPE_PRECISION checking. For vector support the constant case is lacking and the pattern would have missing optab support checking for the result operation. PR middle-end/110461 * match.pd (bitop (convert@2 @0) (convert?@3 @1)): Disable for VECTOR_TYPE_P. * gcc.dg/pr110461.c: New testcase.=