re PR c++/42055 (ICE with ambiguous template specialization)
authorPaolo Carlini <paolo.carlini@oracle.com>
Mon, 16 Nov 2009 14:58:33 +0000 (14:58 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Mon, 16 Nov 2009 14:58:33 +0000 (14:58 +0000)
cp/
2009-11-16  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/42055
* pt.c (determine_specialization): Assign to candidates the return
value of the chainon called before print_candidates.

testsuite/
2009-11-16  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/42055
* testsuite/g++.dg/template/crash92.C: New.

From-SVN: r154202

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

index 2b18d01..ce4415d 100644 (file)
@@ -1,5 +1,11 @@
 2009-11-16  Paolo Carlini  <paolo.carlini@oracle.com>
 
+       PR c++/42055
+       * pt.c (determine_specialization): Assign to candidates the return
+       value of the chainon called before print_candidates.
+
+2009-11-16  Paolo Carlini  <paolo.carlini@oracle.com>
+
        PR c++/32056
        * decl.h (enum decl_context): Add TPARM enumerator.
        * decl.c (grokdeclarator): Per 14.1/2, error out if a storage class
index b7d72c1..4ca94d6 100644 (file)
@@ -1941,7 +1941,7 @@ determine_specialization (tree template_id,
     {
       error ("ambiguous template specialization %qD for %q+D",
             template_id, decl);
-      chainon (candidates, templates);
+      candidates = chainon (candidates, templates);
       print_candidates (candidates);
       return error_mark_node;
     }
index 753a8b2..42702eb 100644 (file)
@@ -1,5 +1,10 @@
 2009-11-16  Paolo Carlini  <paolo.carlini@oracle.com>
 
+       PR c++/42055
+       * testsuite/g++.dg/template/crash92.C: New.
+
+2009-11-16  Paolo Carlini  <paolo.carlini@oracle.com>
+
        PR c++/32056
        * testsuite/g++.dg/template/error44.C: New.
 
diff --git a/gcc/testsuite/g++.dg/template/crash92.C b/gcc/testsuite/g++.dg/template/crash92.C
new file mode 100644 (file)
index 0000000..c0219c4
--- /dev/null
@@ -0,0 +1,7 @@
+// PR c++/42055
+
+template<typename T> void foo(T, T); // { dg-error "candidates|template" }
+
+template<typename T> void foo(T, int); // { dg-error "template" }
+
+template void foo(int, int); // { dg-error "ambiguous template specialization" }