OSDN Git Service

* typeck2.c (digest_init): Use CONVERT_EXPR_P.
authortomby <tomby@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 12 May 2008 13:32:05 +0000 (13:32 +0000)
committertomby <tomby@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 12 May 2008 13:32:05 +0000 (13:32 +0000)
        * call.c (build_over_call): Likewise.

        * error.c (dump_expr): Use CASE_CONVERT.

        * class.c (fixed_type_or_null): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@135213 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/call.c
gcc/cp/class.c
gcc/cp/error.c
gcc/cp/typeck2.c

index 7370503..85deaa4 100644 (file)
@@ -1,3 +1,10 @@
+2008-05-12  Tomas Bily  <tbily@suse.cz>
+
+        * typeck2.c (digest_init): Use CONVERT_EXPR_P.
+        * call.c (build_over_call): Likewise.
+        * error.c (dump_expr): Use CASE_CONVERT.
+        * class.c (fixed_type_or_null): Likewise.
+
 2008-05-11  Volker Reichelt  <v.reichelt@netcologne.de>
 
        * parser.c (cp_parser_omp_clause_reduction): Add missing "expected"
index c072a7d..b83ad3a 100644 (file)
@@ -5119,9 +5119,8 @@ build_over_call (struct z_candidate *cand, int flags, tsubst_flags_t complain)
 
       /* Pull out the real argument, disregarding const-correctness.  */
       targ = arg;
-      while (TREE_CODE (targ) == NOP_EXPR
-            || TREE_CODE (targ) == NON_LVALUE_EXPR
-            || TREE_CODE (targ) == CONVERT_EXPR)
+      while (CONVERT_EXPR_P (targ)
+            || TREE_CODE (targ) == NON_LVALUE_EXPR)
        targ = TREE_OPERAND (targ, 0);
       if (TREE_CODE (targ) == ADDR_EXPR)
        {
index 73f5dd5..4d786a2 100644 (file)
@@ -5411,8 +5411,7 @@ fixed_type_or_null (tree instance, int *nonnull, int *cdtorp)
 
       return NULL_TREE;
 
-    case NOP_EXPR:
-    case CONVERT_EXPR:
+    CASE_CONVERT:
       return RECUR (TREE_OPERAND (instance, 0));
 
     case ADDR_EXPR:
index 9216a44..55e620a 100644 (file)
@@ -1747,8 +1747,7 @@ dump_expr (tree t, int flags)
       dump_expr (TREE_OPERAND (t, 0), flags | TFF_EXPR_IN_PARENS);
       break;
 
-    case NOP_EXPR:
-    case CONVERT_EXPR:
+    CASE_CONVERT:
     case VIEW_CONVERT_EXPR:
       {
        tree op = TREE_OPERAND (t, 0);
index c7339f1..c1fea0c 100644 (file)
@@ -713,7 +713,7 @@ digest_init (tree type, tree init)
 
       /* Skip any conversions since we'll be outputting the underlying
         constant.  */
-      while (TREE_CODE (*exp) == NOP_EXPR || TREE_CODE (*exp) == CONVERT_EXPR
+      while (CONVERT_EXPR_P (*exp)
             || TREE_CODE (*exp) == NON_LVALUE_EXPR)
        exp = &TREE_OPERAND (*exp, 0);