+2011-12-06 Paolo Carlini <paolo.carlini@oracle.com>
+
+ PR c++/51431
+ * init.c (build_value_init): Check build_aggr_init_expr return
+ value for error_mark_node.
+
2011-12-06 Dodji Seketeli <dodji@redhat.com>
PR c++/51427
tree ctor = build_special_member_call
(NULL_TREE, complete_ctor_identifier,
NULL, type, LOOKUP_NORMAL, complain);
+ ctor = build_aggr_init_expr (type, ctor, complain);
if (ctor != error_mark_node)
- {
- ctor = build_aggr_init_expr (type, ctor, complain);
- AGGR_INIT_ZERO_FIRST (ctor) = 1;
- }
+ AGGR_INIT_ZERO_FIRST (ctor) = 1;
return ctor;
}
}
+2011-12-06 Paolo Carlini <paolo.carlini@oracle.com>
+
+ PR c++/51431
+ * g++.dg/other/abstract3.C: New.
+
2011-12-06 Richard Guenther <rguenther@suse.de>
PR tree-optimization/49997
--- /dev/null
+// PR c++/51431
+
+struct A // { dg-message "note" }
+{
+ virtual void foo() = 0; // { dg-message "note" }
+};
+
+struct B
+{
+ A a; // { dg-error "abstract" }
+ B() : a() {} // { dg-error "abstract" }
+};