From: Jason Merrill Date: Mon, 20 Feb 2017 06:06:20 +0000 (-0500) Subject: PR c++/79606 - ICE with this->base_member in NSDMI X-Git-Tag: upstream/12.2.0~41087 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bcbdfa4ce0ba21fe081b96dffef4b9bbb43cfae4;p=platform%2Fupstream%2Fgcc.git PR c++/79606 - ICE with this->base_member in NSDMI * class.c (build_base_path): Check processing_template_decl. From-SVN: r245593 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 3ae8893..7258348 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,8 @@ 2017-02-19 Jason Merrill + PR c++/79606 - ICE with this->base_member in NSDMI + * class.c (build_base_path): Check processing_template_decl. + PR c++/79607 - ICE with T{} initializer * decl.c (type_dependent_init_p): Check the type of a CONSTRUCTOR. diff --git a/gcc/cp/class.c b/gcc/cp/class.c index 1442b55..9e4b4c4 100644 --- a/gcc/cp/class.c +++ b/gcc/cp/class.c @@ -375,6 +375,7 @@ build_base_path (enum tree_code code, set up properly yet, and the value doesn't matter there either; we're just interested in the result of overload resolution. */ if (cp_unevaluated_operand != 0 + || processing_template_decl || in_template_function ()) { expr = build_nop (ptr_target_type, expr); diff --git a/gcc/testsuite/g++.dg/cpp0x/nsdmi-template16.C b/gcc/testsuite/g++.dg/cpp0x/nsdmi-template16.C new file mode 100644 index 0000000..58dec7b --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/nsdmi-template16.C @@ -0,0 +1,14 @@ +// PR c++/79606 +// { dg-do compile { target c++11 } } + +struct A +{ + int i = 0; +}; + +template struct B : A +{ + int j = this->i; +}; + +B<0> b;