From ee38ecd4066dc3af0b893f2f4cda42d7938fa951 Mon Sep 17 00:00:00 2001
From: Paolo Carlini <paolo.carlini@oracle.com>
Date: Mon, 24 Sep 2012 16:56:41 +0000
Subject: [PATCH] re PR c++/50828 (class template parameter not printed for
 member function template in candidate list)

2012-09-24  Paolo Carlini  <paolo.carlini@oracle.com>

	PR c++/50828
	* error.c (dump_function_decl): Strip TFF_TEMPLATE_NAME from flags
	at the outset.

From-SVN: r191673
---
 gcc/cp/ChangeLog | 6 ++++++
 gcc/cp/error.c   | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 3f894fedd8d5..65c9c2c540c5 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,9 @@
+2012-09-24  Paolo Carlini  <paolo.carlini@oracle.com>
+
+	PR c++/50828
+	* error.c (dump_function_decl): Strip TFF_TEMPLATE_NAME from flags
+	at the outset.
+
 2012-09-24  Jason Merrill  <jason@redhat.com>
 
 	* decl.c (get_atexit_node): Remove dead code.
diff --git a/gcc/cp/error.c b/gcc/cp/error.c
index 30fa0182a8f4..c8b614b165c9 100644
--- a/gcc/cp/error.c
+++ b/gcc/cp/error.c
@@ -1348,7 +1348,7 @@ dump_function_decl (tree t, int flags)
       return;
     }
 
-  flags &= ~TFF_UNQUALIFIED_NAME;
+  flags &= ~(TFF_UNQUALIFIED_NAME | TFF_TEMPLATE_NAME);
   if (TREE_CODE (t) == TEMPLATE_DECL)
     t = DECL_TEMPLATE_RESULT (t);
 
-- 
GitLab