re PR c++/51265 (ICE in finish_decltype_type, at cp/semantics.c:5244)
authorPaolo Carlini <paolo.carlini@oracle.com>
Tue, 22 Nov 2011 20:48:33 +0000 (20:48 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Tue, 22 Nov 2011 20:48:33 +0000 (20:48 +0000)
/cp
2011-11-22  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/51265
* semantics.c (finish_decltype_type): Handle PTRMEM_CST.

/testsuite
2011-11-22  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/51265
* g++.dg/cpp0x/decltype36.C: New.

From-SVN: r181638

gcc/cp/ChangeLog
gcc/cp/semantics.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/decltype36.C [new file with mode: 0644]

index 867c45c..9d8f47b 100644 (file)
@@ -1,3 +1,8 @@
+2011-11-22  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/51265
+       * semantics.c (finish_decltype_type): Handle PTRMEM_CST.
+
 2011-11-22  Dodji Seketeli  <dodji@redhat.com>
 
        PR c++/51143
index fe685fa..3c9853a 100644 (file)
@@ -5235,8 +5235,9 @@ finish_decltype_type (tree expr, bool id_expression_or_member_access_p,
           gcc_unreachable ();
 
         case INTEGER_CST:
+       case PTRMEM_CST:
           /* We can get here when the id-expression refers to an
-             enumerator.  */
+             enumerator or non-type template parameter.  */
           type = TREE_TYPE (expr);
           break;
 
index c21ee61..d0dd9b9 100644 (file)
@@ -1,3 +1,8 @@
+2011-11-22  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR c++/51265
+       * g++.dg/cpp0x/decltype36.C: New.
+
 2011-11-22  Jakub Jelinek  <jakub@redhat.com>
 
        PR tree-optimization/51074
diff --git a/gcc/testsuite/g++.dg/cpp0x/decltype36.C b/gcc/testsuite/g++.dg/cpp0x/decltype36.C
new file mode 100644 (file)
index 0000000..f3dfed9
--- /dev/null
@@ -0,0 +1,21 @@
+// PR c++/51265
+// { dg-options -std=c++0x }
+
+struct Funny
+{
+  int print(int);
+};
+
+template<typename X>
+void c();
+
+template<typename X, X ff>
+void xx()
+{
+  c<decltype(ff)>();
+}
+
+int main()
+{
+  xx<int(Funny::*)(int), &Funny::print>();
+}