]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
tree.c (build_target_expr): Set TREE_CONSTANT on literal TARGET_EXPR if the value...
authorJason Merrill <jason@redhat.com>
Tue, 23 Aug 2011 16:03:35 +0000 (12:03 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Tue, 23 Aug 2011 16:03:35 +0000 (12:03 -0400)
* tree.c (build_target_expr): Set TREE_CONSTANT on
literal TARGET_EXPR if the value is constant.
* typeck2.c (build_functional_cast): Don't set it here.

From-SVN: r177997

gcc/cp/ChangeLog
gcc/cp/tree.c
gcc/cp/typeck2.c

index bbada45813c6d648c08dbc072ddbac9b99c09417..23a63ce5a1bbfbc09bc8c2d5dd5f9a97a5f18460 100644 (file)
@@ -1,3 +1,9 @@
+2011-08-23  Jason Merrill  <jason@redhat.com>
+
+       * tree.c (build_target_expr): Set TREE_CONSTANT on
+       literal TARGET_EXPR if the value is constant.
+       * typeck2.c (build_functional_cast): Don't set it here.
+
 2011-08-23  Jason Merrill  <jason@redhat.com>
 
        Core 903 (partial)
index 4ef89c45f650f3c8f0daced97d38b81ac0a46e8d..00598ce60699f5fe8582aa037b5e11cda1548aa6 100644 (file)
@@ -288,6 +288,7 @@ static tree
 build_target_expr (tree decl, tree value, tsubst_flags_t complain)
 {
   tree t;
+  tree type = TREE_TYPE (decl);
 
 #ifdef ENABLE_CHECKING
   gcc_assert (VOID_TYPE_P (TREE_TYPE (value))
@@ -302,12 +303,14 @@ build_target_expr (tree decl, tree value, tsubst_flags_t complain)
   t = cxx_maybe_build_cleanup (decl, complain);
   if (t == error_mark_node)
     return error_mark_node;
-  t = build4 (TARGET_EXPR, TREE_TYPE (decl), decl, value, t, NULL_TREE);
+  t = build4 (TARGET_EXPR, type, decl, value, t, NULL_TREE);
   /* We always set TREE_SIDE_EFFECTS so that expand_expr does not
      ignore the TARGET_EXPR.  If there really turn out to be no
      side-effects, then the optimizer should be able to get rid of
      whatever code is generated anyhow.  */
   TREE_SIDE_EFFECTS (t) = 1;
+  if (literal_type_p (type))
+    TREE_CONSTANT (t) = TREE_CONSTANT (value);
 
   return t;
 }
index 79aa354ad02eb3db00d038e09ebe27fc477651d7..97f98ab3507cb3defe75bf96da34e6c99bdaf99e 100644 (file)
@@ -1684,9 +1684,6 @@ build_functional_cast (tree exp, tree parms, tsubst_flags_t complain)
     {
       exp = build_value_init (type, complain);
       exp = get_target_expr_sfinae (exp, complain);
-      /* FIXME this is wrong */
-      if (literal_type_p (type))
-       TREE_CONSTANT (exp) = true;
       return exp;
     }