OSDN Git Service

cp:
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 14 Feb 2005 13:45:42 +0000 (13:45 +0000)
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 14 Feb 2005 13:45:42 +0000 (13:45 +0000)
PR c++/19884
* pt.c (check_explicit_specialization): Make sure namespace
binding lookup found an overloaded function.
(lookup_template_function): Just assert FNS is an overloaded
function.

PR c++/19895
* decl.c (grokdeclarator): Check for error mark node in ptrmem
construction.
testsuite:
PR c++/19895
* g++.dg/parse/ptrmem3.C: New.

PR c++/19884
* g++.old-deja/g++.oliva/template6.C: Add another case.
* g++.dg/template/explicit6.C: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95009 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/cp/pt.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/parse/ptrmem3.C [new file with mode: 0644]
gcc/testsuite/g++.dg/template/explicit6.C [new file with mode: 0644]
gcc/testsuite/g++.old-deja/g++.oliva/template6.C

index 777f520..add1476 100644 (file)
@@ -1,10 +1,22 @@
+2005-02-14  Nathan Sidwell  <nathan@codesourcery.com>
+
+       PR c++/19884
+       * pt.c (check_explicit_specialization): Make sure namespace
+       binding lookup found an overloaded function.
+       (lookup_template_function): Just assert FNS is an overloaded
+       function.
+
+       PR c++/19895
+       * decl.c (grokdeclarator): Check for error mark node in ptrmem
+       construction.
+
 2005-02-14  Alexandre Oliva  <aoliva@redhat.com>
 
        PR c++/17816
        * decl.c (redeclaration_error_message): Report redefinition of
        pure virtual function.
 
-2005-02-11  Nathan Sidwell  <nathan@codesourcery.com>
+2005-02-14  Nathan Sidwell  <nathan@codesourcery.com>
 
        PR c++/19891
        * class.c (build_simple_base_path): Build the component_ref
index 47732cb..48f8d8c 100644 (file)
@@ -7348,6 +7348,9 @@ grokdeclarator (const cp_declarator *declarator,
                         declarator->u.pointer.class_type);
                  type = build_pointer_type (type);
                }
+             else if (declarator->u.pointer.class_type == error_mark_node)
+               /* We will already have complained.  */
+               type = error_mark_node;
              else
                type = build_ptrmem_type (declarator->u.pointer.class_type,
                                          type);
index b131213..7025def 100644 (file)
@@ -1883,6 +1883,11 @@ check_explicit_specialization (tree declarator,
              /* Find the namespace binding, using the declaration
                  context.  */
              fns = namespace_binding (dname, CP_DECL_CONTEXT (decl));
+             if (!fns || !is_overloaded_fn (fns))
+               {
+                 error ("%qD is not a template function", dname);
+                 fns = error_mark_node;
+               }
            }
 
          declarator = lookup_template_function (fns, NULL_TREE);
@@ -4196,17 +4201,8 @@ lookup_template_function (tree fns, tree arglist)
     return error_mark_node;
 
   gcc_assert (!arglist || TREE_CODE (arglist) == TREE_VEC);
-  if (fns == NULL_TREE 
-      || TREE_CODE (fns) == FUNCTION_DECL)
-    {
-      error ("non-template used as template");
-      return error_mark_node;
-    }
-
-  gcc_assert (TREE_CODE (fns) == TEMPLATE_DECL
-             || TREE_CODE (fns) == OVERLOAD
-             || BASELINK_P (fns)
-             || TREE_CODE (fns) == IDENTIFIER_NODE);
+  gcc_assert (fns && (is_overloaded_fn (fns)
+                     || TREE_CODE (fns) == IDENTIFIER_NODE));
 
   if (BASELINK_P (fns))
     {
index e185aad..61fef17 100644 (file)
@@ -1,3 +1,12 @@
+2005-02-14  Nathan Sidwell  <nathan@codesourcery.com>
+
+       PR c++/19895
+       * g++.dg/parse/ptrmem3.C: New.
+
+       PR c++/19884
+       * g++.old-deja/g++.oliva/template6.C: Add another case.
+       * g++.dg/template/explicit6.C: New.
+
 2005-02-14  Alexandre Oliva  <aoliva@redhat.com>
 
        PR c++/17816
diff --git a/gcc/testsuite/g++.dg/parse/ptrmem3.C b/gcc/testsuite/g++.dg/parse/ptrmem3.C
new file mode 100644 (file)
index 0000000..444f25c
--- /dev/null
@@ -0,0 +1,11 @@
+// Copyright (C) 2005 Free Software Foundation, Inc.
+// Contributed by Nathan Sidwell 14 Feb 2005 <nathan@codesourcery.com>
+
+// Origin: Volker Reichelt <reichelt@gcc.gnu.org>
+// Bug 19895: ICE on invalid
+
+
+template<typename> struct A
+{
+  int A<0>::* p; // { dg-error "(type/value mismatch)|(expected)" "" }
+};
diff --git a/gcc/testsuite/g++.dg/template/explicit6.C b/gcc/testsuite/g++.dg/template/explicit6.C
new file mode 100644 (file)
index 0000000..f740269
--- /dev/null
@@ -0,0 +1,8 @@
+// Copyright (C) 2005 Free Software Foundation, Inc.
+// Contributed by Nathan Sidwell 14 Feb 2005 <nathan@codesourcery.com>
+
+// Origin: Volker Reichelt <reichelt@gcc.gnu.org>
+// Bug 19895: ICE on invalid
+
+struct A;
+template A<>::A(); // { dg-error "(not a template)|(explicit qualification)" "" }
index f31d677..270d676 100644 (file)
@@ -6,4 +6,7 @@
 // simplified from bug report by Meenaradchagan Vishnu <mvishnu@fore.com>
 
 template <typename> struct foo {};
-template <> void foo(); // { dg-error "" } bad specialization
+template <> void foo(); // { dg-error "not a template function" } bad specialization
+
+struct baz {};
+template <> void baz (); // { dg-error "not a template function" } bad specialization