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:
parent
057be77f43
commit
7d092805ba
gcc
@ -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
|
||||
|
8
gcc/testsuite/g++.dg/cpp0x/nsdmi-virtual2.C
Normal file
8
gcc/testsuite/g++.dg/cpp0x/nsdmi-virtual2.C
Normal file
@ -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" }
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user