re PR c++/47705 (internal compiler error: in convert_nontype_argument, at cp/pt.c...
authorDodji Seketeli <dodji@redhat.com>
Tue, 8 Mar 2011 22:02:59 +0000 (22:02 +0000)
committerJason Merrill <jason@gcc.gnu.org>
Tue, 8 Mar 2011 22:02:59 +0000 (17:02 -0500)
PR c++/47705
* pt.c (convert_nontype_argument): Only call decay_conversion on
arrays.

From-SVN: r170791

gcc/cp/ChangeLog
gcc/cp/pt.c
gcc/testsuite/g++.dg/template/nontype21.C

index ab0d3b4b56592f57bee4df2208a84825eeefb3a4..68f04e15eac414205cbd025544c08f67e7aebc7a 100644 (file)
@@ -1,3 +1,9 @@
+2011-03-08  Dodji Seketeli  <dodji@redhat.com>
+
+       PR c++/47705
+       * pt.c (convert_nontype_argument): Only call decay_conversion on
+       arrays.
+
 2011-03-08  Jason Merrill  <jason@redhat.com>
 
        PR c++/47488
index cda9df8d1be5f9cc159cfc93c2b6c39bcd189c5a..2ca2cd0c0c24c694f8d28020c926401b302b147d 100644 (file)
@@ -5314,7 +5314,8 @@ convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
 
   /* Add the ADDR_EXPR now for the benefit of
      value_dependent_expression_p.  */
-  if (TYPE_PTROBV_P (type))
+  if (TYPE_PTROBV_P (type)
+      && TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE)
     expr = decay_conversion (expr);
 
   /* If we are in a template, EXPR may be non-dependent, but still
@@ -5369,20 +5370,15 @@ convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
         qualification conversion. Let's strip everything.  */
       else if (TYPE_PTROBV_P (type))
        {
-         tree sub = expr;
-         STRIP_NOPS (sub);
-         if (TREE_CODE (sub) == ADDR_EXPR)
-           {
-             gcc_assert (TREE_CODE (TREE_TYPE (sub)) == POINTER_TYPE);
-             /* Skip the ADDR_EXPR only if it is part of the decay for
-                an array. Otherwise, it is part of the original argument
-                in the source code.  */
-             if (TREE_CODE (TREE_TYPE (TREE_OPERAND (sub, 0))) == ARRAY_TYPE)
-               expr = TREE_OPERAND (sub, 0);
-             else
-               expr = sub;
-             expr_type = TREE_TYPE (expr);
-           }
+         STRIP_NOPS (expr);
+         gcc_assert (TREE_CODE (expr) == ADDR_EXPR);
+         gcc_assert (TREE_CODE (TREE_TYPE (expr)) == POINTER_TYPE);
+         /* Skip the ADDR_EXPR only if it is part of the decay for
+            an array. Otherwise, it is part of the original argument
+            in the source code.  */
+         if (TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == ARRAY_TYPE)
+           expr = TREE_OPERAND (expr, 0);
+         expr_type = TREE_TYPE (expr);
        }
     }
 
index c0f53199b1b61fd7aa9b07aa87b183d11c23fb9d..69cab54f412b48703b4ca159c78b88495f0ead44 100644 (file)
@@ -4,4 +4,4 @@ template<char const * const x> class Something { };
 
 extern char const xyz;
 
-class SomethingElse:public Something<xyz> { }; // { dg-error "const char *" }
+class SomethingElse:public Something<xyz> { }; // { dg-error "xyz. is a variable" }