From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id C5C683857344; Fri, 10 Nov 2023 10:59:07 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C5C683857344 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1699613947; bh=3Vf3a39lOx3RUyGKd5lMjDhP2X0lAVP9PkPOP4ZYUcE=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Z9i9ww788Yu5qsRFhgOKMmdxlgKWwrMNPpy9P9tP0nla+DXc6qR7YcE8v6t/QhqKF 9oLL3cYlvLmO0MCeq6e6jxOv4cFseoEeLKHdBbV6Ar9hwHT/xVJebPyvPotnoId/V9 aR0R7Pd4I2aLVNuIVPnn4vIluEtAO+o0qrsnk2F0= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/112469] [14 Regression] ICE: eliminate_stmt, at tree-ssa-sccvn.cc:6944 Date: Fri, 10 Nov 2023 10:59:07 +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=3D112469 --- Comment #8 from CVS Commits --- The master branch has been updated by Richard Biener : https://gcc.gnu.org/g:20aa06490ab57da7729a24bae7c4ec2f5918ec91 commit r14-5317-g20aa06490ab57da7729a24bae7c4ec2f5918ec91 Author: Richard Biener Date: Fri Nov 10 09:56:01 2023 +0100 middle-end/112469 - fix missing converts in vec_cond_expr simplification The following avoids type inconsistencies in .COND_op generated by simplifications of VEC_COND_EXPRs. PR middle-end/112469 * match.pd (cond ? op a : b -> .COND_op (cond, a, b)): Add missing view_converts. * gcc.dg/torture/pr112469.c: New testcase.=