https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108967
--- Comment #11 from CVS Commits <cvs-commit at gcc dot gnu.org> --- The releases/gcc-11 branch has been updated by Jakub Jelinek <ja...@gcc.gnu.org>: https://gcc.gnu.org/g:54b240621d372e63d8fcacae591e39b36634ac18 commit r11-10717-g54b240621d372e63d8fcacae591e39b36634ac18 Author: Jakub Jelinek <ja...@redhat.com> 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, the 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 needed tree codes there. 2023-03-01 Jakub Jelinek <ja...@redhat.com> PR debug/108967 * cfgexpand.c (expand_debug_expr): Handle WIDEN_{PLUS,MINUS}_EXPR and VEC_WIDEN_{PLUS,MINUS}_{HI,LO}_EXPR. * g++.dg/debug/pr108967.C: New test. (cherry picked from commit 520403f324a6ed8b527f39239709dd0841b992e2)