Commit 04056396 by Jason Merrill Committed by Jason Merrill

* init.c (push_base_cleanups): Check ANON_AGGR_TYPE_P.

From-SVN: r204226
parent 8d52ed5c
2013-10-30 Jason Merrill <jason@redhat.com>
* init.c (push_base_cleanups): Check ANON_AGGR_TYPE_P.
2013-10-30 Tobias Burnus <burnus@net-b.de> 2013-10-30 Tobias Burnus <burnus@net-b.de>
PR other/33426 PR other/33426
......
...@@ -4130,7 +4130,7 @@ push_base_cleanups (void) ...@@ -4130,7 +4130,7 @@ push_base_cleanups (void)
|| TREE_CODE (member) != FIELD_DECL || TREE_CODE (member) != FIELD_DECL
|| DECL_ARTIFICIAL (member)) || DECL_ARTIFICIAL (member))
continue; continue;
if (ANON_UNION_TYPE_P (this_type)) if (ANON_AGGR_TYPE_P (this_type))
continue; continue;
if (type_build_dtor_call (this_type)) if (type_build_dtor_call (this_type))
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment