PR c++/85356 - ICE with pointer to member function.
authorJason Merrill <jason@redhat.com>
Thu, 12 Apr 2018 20:03:33 +0000 (16:03 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Thu, 12 Apr 2018 20:03:33 +0000 (16:03 -0400)
* pt.c (maybe_instantiate_noexcept): Do instantiate in templates if
flag_noexcept_type.  Build the new spec within the function context.
* except.c (build_noexcept_spec): Do get constant value in templates
if flag_noexcept_type.
* decl.c (check_redeclaration_exception_specification): Don't
instantiate noexcept on a dependent declaration.

From-SVN: r259356

gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/cp/except.c
gcc/cp/pt.c
gcc/testsuite/g++.dg/template/mem_func_ptr2.C [new file with mode: 0644]

index e3bc2d9..08021df 100644 (file)
@@ -1,3 +1,13 @@
+2018-04-12  Jason Merrill  <jason@redhat.com>
+
+       PR c++/85356 - ICE with pointer to member function.
+       * pt.c (maybe_instantiate_noexcept): Do instantiate in templates if
+       flag_noexcept_type.  Build the new spec within the function context.
+       * except.c (build_noexcept_spec): Do get constant value in templates
+       if flag_noexcept_type.
+       * decl.c (check_redeclaration_exception_specification): Don't
+       instantiate noexcept on a dependent declaration.
+
 2018-04-12  Marek Polacek  <polacek@redhat.com>
 
        PR c++/85258
index 44a152b..9f1a171 100644 (file)
@@ -1232,8 +1232,11 @@ check_redeclaration_exception_specification (tree new_decl,
       && UNEVALUATED_NOEXCEPT_SPEC_P (old_exceptions))
     return;
 
-  maybe_instantiate_noexcept (new_decl);
-  maybe_instantiate_noexcept (old_decl);
+  if (!type_dependent_expression_p (old_decl))
+    {
+      maybe_instantiate_noexcept (new_decl);
+      maybe_instantiate_noexcept (old_decl);
+    }
   new_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (new_decl));
   old_exceptions = TYPE_RAISES_EXCEPTIONS (TREE_TYPE (old_decl));
 
index 0b46698..6dab6d6 100644 (file)
@@ -1194,11 +1194,14 @@ build_noexcept_spec (tree expr, int complain)
 {
   /* This isn't part of the signature, so don't bother trying to evaluate
      it until instantiation.  */
-  if (!processing_template_decl && TREE_CODE (expr) != DEFERRED_NOEXCEPT)
+  if (TREE_CODE (expr) != DEFERRED_NOEXCEPT
+      && (!processing_template_decl
+         || (flag_noexcept_type && !value_dependent_expression_p (expr))))
     {
       expr = perform_implicit_conversion_flags (boolean_type_node, expr,
                                                complain,
                                                LOOKUP_NORMAL);
+      expr = instantiate_non_dependent_expr (expr);
       expr = cxx_constant_value (expr);
     }
   if (TREE_CODE (expr) == INTEGER_CST)
index 76e546c..da8a526 100644 (file)
@@ -23234,7 +23234,8 @@ maybe_instantiate_noexcept (tree fn, tsubst_flags_t complain)
   tree fntype, spec, noex, clone;
 
   /* Don't instantiate a noexcept-specification from template context.  */
-  if (processing_template_decl)
+  if (processing_template_decl
+      && (!flag_noexcept_type || type_dependent_expression_p (fn)))
     return true;
 
   if (DECL_CLONED_FUNCTION_P (fn))
@@ -23273,10 +23274,10 @@ maybe_instantiate_noexcept (tree fn, tsubst_flags_t complain)
                                        tf_warning_or_error, fn,
                                        /*function_p=*/false,
                                        /*integral_constant_expression_p=*/true);
+         spec = build_noexcept_spec (noex, tf_warning_or_error);
          pop_deferring_access_checks ();
          pop_access_scope (fn);
          pop_tinst_level ();
-         spec = build_noexcept_spec (noex, tf_warning_or_error);
          if (spec == error_mark_node)
            spec = noexcept_false_spec;
        }
diff --git a/gcc/testsuite/g++.dg/template/mem_func_ptr2.C b/gcc/testsuite/g++.dg/template/mem_func_ptr2.C
new file mode 100644 (file)
index 0000000..9ceabd3
--- /dev/null
@@ -0,0 +1,13 @@
+// PR c++/85356
+
+struct A
+{
+  A& operator=(int);
+};
+
+void foo(A&(A::*)(int));
+
+template<int> void bar()
+{
+  foo(&A::operator=);
+}