call.c (build_new_method_call_1): Use INDIRECT_REF_P.
authorGabriel Dos Reis <gdr@integrable-solutions.net>
Wed, 27 Mar 2013 03:22:31 +0000 (03:22 +0000)
committerGabriel Dos Reis <gdr@gcc.gnu.org>
Wed, 27 Mar 2013 03:22:31 +0000 (03:22 +0000)
* call.c (build_new_method_call_1): Use INDIRECT_REF_P.
* cvt.c (convert_to_void): Likewise.
* error.c (dump_expr): Likewise.
* mangle.c (write_expression): Likewise.
* parser.c (cp_parser_template_argument): Likewise.
* pt.c (convert_nontype_argument): Likewise.
(tsubst_copy_and_build): Likewise.
* rtti.c (build_typeid): Likewise.
* semantics.c (finish_call_expr): Likewise.
(finish_decltype_type): Likewise.
(build_data_member_initialization): Likewise.
* tree.c (is_dummy_object): Likewise.
* typeck.c (decay_conversion): Likewise.
(build_class_member_access_expr): Likewise.
(cp_build_addr_expr_1): Likewise.
(unary_complex_lvalue): Likewise.
(check_return_expr): Likewise.
* typeck2.c (cxx_readonly_error): Likewise.

From-SVN: r197132

12 files changed:
gcc/cp/ChangeLog
gcc/cp/call.c
gcc/cp/cvt.c
gcc/cp/error.c
gcc/cp/mangle.c
gcc/cp/parser.c
gcc/cp/pt.c
gcc/cp/rtti.c
gcc/cp/semantics.c
gcc/cp/tree.c
gcc/cp/typeck.c
gcc/cp/typeck2.c

index 3fe07d9..5a1cac4 100644 (file)
@@ -1,3 +1,24 @@
+2013-03-26  Gabriel Dos Reis  <gdr@integrable-solutions.net>
+
+       * call.c (build_new_method_call_1): Use INDIRECT_REF_P.
+       * cvt.c (convert_to_void): Likewise.
+       * error.c (dump_expr): Likewise.
+       * mangle.c (write_expression): Likewise.
+       * parser.c (cp_parser_template_argument): Likewise.
+       * pt.c (convert_nontype_argument): Likewise.
+       (tsubst_copy_and_build): Likewise.
+       * rtti.c (build_typeid): Likewise.
+       * semantics.c (finish_call_expr): Likewise.
+       (finish_decltype_type): Likewise.
+       (build_data_member_initialization): Likewise.
+       * tree.c (is_dummy_object): Likewise.
+       * typeck.c (decay_conversion): Likewise.
+       (build_class_member_access_expr): Likewise.
+       (cp_build_addr_expr_1): Likewise.
+       (unary_complex_lvalue): Likewise.
+       (check_return_expr): Likewise.
+       * typeck2.c (cxx_readonly_error): Likewise.
+
 2013-03-26  Jason Merrill  <jason@redhat.com>
 
        PR c++/52597
index dd19e48..67d8b81 100644 (file)
@@ -7730,7 +7730,7 @@ build_new_method_call_1 (tree instance, tree fns, vec<tree, va_gc> **args,
          cast_to_void = true;
          call = TREE_OPERAND (call, 0);
        }
-      if (TREE_CODE (call) == INDIRECT_REF)
+      if (INDIRECT_REF_P (call))
        call = TREE_OPERAND (call, 0);
       call = (build_min_non_dep_call_vec
              (call,
index 348e608..2cb858b 100644 (file)
@@ -916,7 +916,7 @@ convert_to_void (tree expr, impl_conv_void implicit, tsubst_flags_t complain)
        exprv = TREE_OPERAND (exprv, 1);
       if (DECL_P (exprv)
          || handled_component_p (exprv)
-         || TREE_CODE (exprv) == INDIRECT_REF)
+         || INDIRECT_REF_P (exprv))
        /* Expr is not being 'used' here, otherwise we whould have
           called mark_{rl}value_use use here, which would have in turn
           called mark_exp_read.  Rather, we call mark_exp_read directly
index bcb0274..1574650 100644 (file)
@@ -1988,7 +1988,7 @@ dump_expr (tree t, int flags)
     case COMPONENT_REF:
       {
        tree ob = TREE_OPERAND (t, 0);
-       if (TREE_CODE (ob) == INDIRECT_REF)
+       if (INDIRECT_REF_P (ob))
          {
            ob = TREE_OPERAND (ob, 0);
            if (TREE_CODE (ob) != PARM_DECL
@@ -2243,7 +2243,7 @@ dump_expr (tree t, int flags)
          }
        else
          {
-           if (TREE_CODE (ob) == INDIRECT_REF)
+           if (INDIRECT_REF_P (ob))
              {
                dump_expr (TREE_OPERAND (ob, 0), flags | TFF_EXPR_IN_PARENS);
                pp_cxx_arrow (cxx_pp);
index 603f701..a672d4e 100644 (file)
@@ -2691,7 +2691,7 @@ write_expression (tree expr)
          write_member_name (member);
        }
     }
-  else if (TREE_CODE (expr) == INDIRECT_REF
+  else if (INDIRECT_REF_P (expr)
           && TREE_TYPE (TREE_OPERAND (expr, 0))
           && TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == REFERENCE_TYPE)
     {
index 7ac90df..9ba0998 100644 (file)
@@ -13274,7 +13274,7 @@ cp_parser_template_argument (cp_parser* parser)
        {
          tree probe;
 
-         if (TREE_CODE (argument) == INDIRECT_REF)
+         if (INDIRECT_REF_P (argument))
            {
              gcc_assert (REFERENCE_REF_P (argument));
              argument = TREE_OPERAND (argument, 0);
index bb690c5..393dbc9 100644 (file)
@@ -5735,7 +5735,7 @@ convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain)
         shall be one of: [...]
 
         -- the address of an object or function with external linkage.  */
-      if (TREE_CODE (expr) == INDIRECT_REF
+      if (INDIRECT_REF_P (expr)
          && TYPE_REF_OBJ_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
        {
          expr = TREE_OPERAND (expr, 0);
@@ -14013,7 +14013,7 @@ tsubst_copy_and_build (tree t,
                if (unq != function)
                  {
                    tree fn = unq;
-                   if (TREE_CODE (fn) == INDIRECT_REF)
+                   if (INDIRECT_REF_P (fn))
                      fn = TREE_OPERAND (fn, 0);
                    if (TREE_CODE (fn) == COMPONENT_REF)
                      fn = TREE_OPERAND (fn, 1);
index 6c02c1c..dd22e34 100644 (file)
@@ -326,7 +326,7 @@ build_typeid (tree exp, tsubst_flags_t complain)
 
   /* FIXME when integrating with c_fully_fold, mark
      resolves_to_fixed_type_p case as a non-constant expression.  */
-  if (TREE_CODE (exp) == INDIRECT_REF
+  if (INDIRECT_REF_P (exp)
       && TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == POINTER_TYPE
       && TYPE_POLYMORPHIC_P (TREE_TYPE (exp))
       && ! resolves_to_fixed_type_p (exp, &nonnull)
index e8fc778..fd77725 100644 (file)
@@ -2236,7 +2236,7 @@ finish_call_expr (tree fn, vec<tree, va_gc> **args, bool disallow_virtual,
 
   if (processing_template_decl && result != error_mark_node)
     {
-      if (TREE_CODE (result) == INDIRECT_REF)
+      if (INDIRECT_REF_P (result))
        result = TREE_OPERAND (result, 0);
       result = build_call_vec (TREE_TYPE (result), orig_fn, orig_args);
       SET_EXPR_LOCATION (result, input_location);
@@ -5301,7 +5301,7 @@ finish_decltype_type (tree expr, bool id_expression_or_member_access_p,
       if (identifier_p (expr))
         expr = lookup_name (expr);
 
-      if (TREE_CODE (expr) == INDIRECT_REF)
+      if (INDIRECT_REF_P (expr))
         /* This can happen when the expression is, e.g., "a.b". Just
            look at the underlying operand.  */
         expr = TREE_OPERAND (expr, 0);
@@ -5948,7 +5948,7 @@ build_data_member_initialization (tree t, vec<constructor_elt, va_gc> **vec)
     return true;
   else
     gcc_unreachable ();
-  if (TREE_CODE (member) == INDIRECT_REF)
+  if (INDIRECT_REF_P (member))
     member = TREE_OPERAND (member, 0);
   if (TREE_CODE (member) == NOP_EXPR)
     {
index 0306db1..4159321 100644 (file)
@@ -2879,7 +2879,7 @@ maybe_dummy_object (tree type, tree* binfop)
 int
 is_dummy_object (const_tree ob)
 {
-  if (TREE_CODE (ob) == INDIRECT_REF)
+  if (INDIRECT_REF_P (ob))
     ob = TREE_OPERAND (ob, 0);
   return (TREE_CODE (ob) == NOP_EXPR
          && TREE_OPERAND (ob, 0) == void_zero_node);
index 8778b2c..a0caa30 100644 (file)
@@ -1918,7 +1918,7 @@ decay_conversion (tree exp, tsubst_flags_t complain)
       tree adr;
       tree ptrtype;
 
-      if (TREE_CODE (exp) == INDIRECT_REF)
+      if (INDIRECT_REF_P (exp))
        return build_nop (build_pointer_type (TREE_TYPE (type)),
                          TREE_OPERAND (exp, 0));
 
@@ -2296,7 +2296,7 @@ build_class_member_access_expr (tree object, tree member,
       int type_quals;
       tree member_type;
 
-      null_object_p = (TREE_CODE (object) == INDIRECT_REF
+      null_object_p = (INDIRECT_REF_P (object)
                       && integer_zerop (TREE_OPERAND (object, 0)));
 
       /* Convert OBJECT to the type of MEMBER.  */
@@ -5171,7 +5171,7 @@ cp_build_addr_expr_1 (tree arg, bool strict_lvalue, tsubst_flags_t complain)
     }
 
   /* Let &* cancel out to simplify resulting code.  */
-  if (TREE_CODE (arg) == INDIRECT_REF)
+  if (INDIRECT_REF_P (arg))
     {
       /* We don't need to have `current_class_ptr' wrapped in a
         NON_LVALUE_EXPR node.  */
@@ -5196,7 +5196,7 @@ cp_build_addr_expr_1 (tree arg, bool strict_lvalue, tsubst_flags_t complain)
       && argtype != unknown_type_node
       && (val = get_base_address (arg))
       && COMPLETE_TYPE_P (TREE_TYPE (val))
-      && TREE_CODE (val) == INDIRECT_REF
+      && INDIRECT_REF_P (val)
       && TREE_CONSTANT (TREE_OPERAND (val, 0)))
     {
       tree type = build_pointer_type (argtype);
@@ -5715,7 +5715,7 @@ unary_complex_lvalue (enum tree_code code, tree arg)
        return build1 (ADDR_EXPR, build_pointer_type (TREE_TYPE (arg)), targ);
       }
 
-    if (TREE_CODE (arg) == SAVE_EXPR && TREE_CODE (targ) == INDIRECT_REF)
+    if (TREE_CODE (arg) == SAVE_EXPR && INDIRECT_REF_P (targ))
       return build3 (SAVE_EXPR, build_pointer_type (TREE_TYPE (arg)),
                     TREE_OPERAND (targ, 0), current_function_decl, NULL);
   }
@@ -8254,7 +8254,7 @@ check_return_expr (tree retval, bool *no_warning)
            warn = false;
          /* If we are calling a function whose return type is the same of
             the current class reference, it is ok.  */
-         else if (TREE_CODE (retval) == INDIRECT_REF
+         else if (INDIRECT_REF_P (retval)
                   && TREE_CODE (TREE_OPERAND (retval, 0)) == CALL_EXPR)
            warn = false;
        }
index 72dccb4..52bc4ec 100644 (file)
@@ -111,7 +111,7 @@ cxx_readonly_error (tree arg, enum lvalue_use errstring)
                          G_("decrement of "
                             "constant field %qD"),
                          arg);
-  else if (TREE_CODE (arg) == INDIRECT_REF
+  else if (INDIRECT_REF_P (arg)
           && TREE_CODE (TREE_TYPE (TREE_OPERAND (arg, 0))) == REFERENCE_TYPE
           && (TREE_CODE (TREE_OPERAND (arg, 0)) == VAR_DECL
               || TREE_CODE (TREE_OPERAND (arg, 0)) == PARM_DECL))