From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id D6B9C3858C2C; Wed, 1 Mar 2023 09:27:29 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D6B9C3858C2C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1677662849; bh=5wRXTdFin/BEu5XbjYeHqNoLFgOSjC7ap49RzDTulBc=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Jn9n/XXidMnDRYu19IkgWlnim2/XD7mrKtZ+Pms0Qsynif8CvuS00fk9E90yf9cM8 AUew9HdzIhJ0MNfF63waTLS+ASEphQgfovRgodswqwZwafp2KF3qKSvznWGgRO9knI /BujXKOnitz1uUk2lD7WYYUxHXb6T8SXVLXk2nsw= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/108967] internal compiler error: in expand_debug_expr, at cfgexpand.cc:5450 Date: Wed, 01 Mar 2023 09:27:28 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: ice-checking, 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: jakub at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.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=3D108967 --- Comment #6 from CVS Commits --- The master branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:520403f324a6ed8b527f39239709dd0841b992e2 commit r13-6388-g520403f324a6ed8b527f39239709dd0841b992e2 Author: Jakub Jelinek Date: Wed Mar 1 10:26:46 2023 +0100 cfgexpand: Handle WIDEN_{PLUS,MINUS}_EXPR and VEC_WIDEN_{PLUS,MINUS}_{HI,LO}_EXPR in expand_debug_expr [PR108967] When these tree codes were introduced, expand_debug_expr hasn't been updated to handle them. For the VEC_*_EXPR we currently mostly punt, t= he non-vector ones can be handled easily. In release compilers this doesn= 't ICE, but with checking we ICE so that we make sure to handle all the ne= eded tree codes there. 2023-03-01 Jakub Jelinek PR debug/108967 * cfgexpand.cc (expand_debug_expr): Handle WIDEN_{PLUS,MINUS}_E= XPR and VEC_WIDEN_{PLUS,MINUS}_{HI,LO}_EXPR. * g++.dg/debug/pr108967.C: New test.=