2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-03 09:20:38 +08:00

re PR c++/51474 ([c++0x] ICE with pure virtual function in initialization of non-static data member)

/cp
2014-03-19  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/51474
	* call.c (build_new_method_call_1): Handle pure virtuals called by
	NSDMIs too.

/testsuite
2014-03-19  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/51474
	* g++.dg/cpp0x/nsdmi-virtual2.C: New.

From-SVN: r208686
This commit is contained in:
Paolo Carlini 2014-03-19 18:21:52 +00:00 committed by Paolo Carlini
parent 057be77f43
commit 7d092805ba
4 changed files with 32 additions and 8 deletions

@ -1,3 +1,9 @@
2014-03-19 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/51474
* call.c (build_new_method_call_1): Handle pure virtuals called by
NSDMIs too.
2014-03-17 Adam Butcher <adam@jessamine.co.uk>
PR c++/60390

@ -7828,15 +7828,20 @@ build_new_method_call_1 (tree instance, tree fns, vec<tree, va_gc> **args,
if (!(flags & LOOKUP_NONVIRTUAL)
&& DECL_PURE_VIRTUAL_P (fn)
&& instance == current_class_ref
&& (DECL_CONSTRUCTOR_P (current_function_decl)
|| DECL_DESTRUCTOR_P (current_function_decl))
&& (complain & tf_warning))
/* This is not an error, it is runtime undefined
behavior. */
warning (0, (DECL_CONSTRUCTOR_P (current_function_decl) ?
"pure virtual %q#D called from constructor"
: "pure virtual %q#D called from destructor"),
fn);
{
/* This is not an error, it is runtime undefined
behavior. */
if (!current_function_decl)
warning (0, "pure virtual %q#D called from "
"non-static data member initializer", fn);
else if (DECL_CONSTRUCTOR_P (current_function_decl)
|| DECL_DESTRUCTOR_P (current_function_decl))
warning (0, (DECL_CONSTRUCTOR_P (current_function_decl)
? "pure virtual %q#D called from constructor"
: "pure virtual %q#D called from destructor"),
fn);
}
if (TREE_CODE (TREE_TYPE (fn)) == METHOD_TYPE
&& is_dummy_object (instance))

@ -1,3 +1,8 @@
2014-03-19 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/51474
* g++.dg/cpp0x/nsdmi-virtual2.C: New.
2014-03-19 H.J. Lu <hongjiu.lu@intel.com>
PR testsuite/60590

@ -0,0 +1,8 @@
// PR c++/51474
// { dg-do compile { target c++11 } }
struct A
{
virtual int foo() = 0;
int i = foo(); // { dg-warning "pure virtual" }
};