mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-29 22:15:03 +08:00
c++: ICE on anon struct with base [PR96636]
pinski pointed out that my recent change to reject anonymous structs with bases was relevant to this PR. But we still ICEd after giving that error; this fixes the ICE. PR c++/96636 gcc/cp/ChangeLog: * decl.c (fixup_anonymous_aggr): Clear TYPE_NEEDS_CONSTRUCTING after error. gcc/testsuite/ChangeLog: * g++.dg/ext/anon-struct9.C: New test.
This commit is contained in:
parent
5b759cdcb7
commit
af76342b44
@ -5094,7 +5094,11 @@ fixup_anonymous_aggr (tree t)
|
||||
tree field, type;
|
||||
|
||||
if (BINFO_N_BASE_BINFOS (TYPE_BINFO (t)))
|
||||
error_at (location_of (t), "anonymous struct with base classes");
|
||||
{
|
||||
error_at (location_of (t), "anonymous struct with base classes");
|
||||
/* Avoid ICE after error on anon-struct9.C. */
|
||||
TYPE_NEEDS_CONSTRUCTING (t) = false;
|
||||
}
|
||||
|
||||
for (field = TYPE_FIELDS (t); field; field = DECL_CHAIN (field))
|
||||
if (TREE_CODE (field) == FIELD_DECL)
|
||||
|
9
gcc/testsuite/g++.dg/ext/anon-struct9.C
Normal file
9
gcc/testsuite/g++.dg/ext/anon-struct9.C
Normal file
@ -0,0 +1,9 @@
|
||||
// PR c++/96636
|
||||
// { dg-options "" }
|
||||
|
||||
typedef class {
|
||||
class a {};
|
||||
class : virtual a {}; // { dg-error "anonymous struct with base" }
|
||||
} b;
|
||||
void foo(){ b();}
|
||||
|
Loading…
Reference in New Issue
Block a user