diff options
author | Jakub Jelinek <jakub@redhat.com> | 2023-11-16 17:42:22 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2023-11-16 17:42:22 +0100 |
commit | 0fa32aeaa6da4ef9566d98a6fb541dd7427d7d36 (patch) | |
tree | 835da0f2c0d8c429ac09888f0cceeb97da1696dc /gcc/ada/gcc-interface/decl.cc | |
parent | 06ff410e0dea135d41bc5f7a9a007d7ba6822dbf (diff) | |
download | gcc-0fa32aeaa6da4ef9566d98a6fb541dd7427d7d36.zip gcc-0fa32aeaa6da4ef9566d98a6fb541dd7427d7d36.tar.gz gcc-0fa32aeaa6da4ef9566d98a6fb541dd7427d7d36.tar.bz2 |
c++: Fix error recovery ICE [PR112365]
check_field_decls for DECL_C_BIT_FIELD FIELD_DECLs with error_mark_node
TREE_TYPE continues early and doesn't call check_bitfield_decl which would
either set DECL_BIT_FIELD, or clear DECL_C_BIT_FIELD. So, the following
testcase ICEs after emitting tons of errors, because
SET_DECL_FIELD_CXX_ZERO_WIDTH_BIT_FIELD asserts DECL_BIT_FIELD.
The patch skips that for FIELD_DECLs with error_mark_node, another
option would be to check DECL_BIT_FIELD in addition to DECL_C_BIT_FIELD.
2023-11-16 Jakub Jelinek <jakub@redhat.com>
PR c++/112365
* class.cc (layout_class_type): Don't
SET_DECL_FIELD_CXX_ZERO_WIDTH_BIT_FIELD on FIELD_DECLs with
error_mark_node type.
* g++.dg/cpp0x/pr112365.C: New test.
Diffstat (limited to 'gcc/ada/gcc-interface/decl.cc')
0 files changed, 0 insertions, 0 deletions