* gdbtypes.c: Remove excessive parentheses at the return keywords.
authorJan Kratochvil <jan.kratochvil@redhat.com>
Fri, 10 Apr 2009 03:36:32 +0000 (03:36 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Fri, 10 Apr 2009 03:36:32 +0000 (03:36 +0000)
gdb/ChangeLog
gdb/gdbtypes.c

index f6e4d5959649e1963776a842770d719e27915f71..a855db7edfa2361c8497e8b71a7cdc0067e44c1a 100644 (file)
@@ -1,3 +1,7 @@
+2009-04-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * gdbtypes.c: Remove excessive parentheses at the return keywords.
+
 2009-04-08  Vladimir Prus  <vladimir@codesourcery.com>
 
        Implement -exec-jump.
index 810232115306fed59952ed27f119e43dce89eedd..fb52e1afaee47239624f0e1d67eb5c789b5741a2 100644 (file)
@@ -180,7 +180,7 @@ alloc_type (struct objfile *objfile)
   TYPE_VPTR_FIELDNO (type) = -1;
   TYPE_CHAIN (type) = type;    /* Chain back to itself.  */
 
-  return (type);
+  return type;
 }
 
 /* Alloc a new type instance structure, fill it with some defaults,
@@ -204,7 +204,7 @@ alloc_type_instance (struct type *oldtype)
 
   TYPE_CHAIN (type) = type;    /* Chain back to itself for now.  */
 
-  return (type);
+  return type;
 }
 
 /* Clear all remnants of the previous type at TYPE, in preparation for
@@ -645,7 +645,7 @@ lookup_memberptr_type (struct type *type, struct type *domain)
 
   mtype = alloc_type (TYPE_OBJFILE (type));
   smash_to_memberptr_type (mtype, domain, type);
-  return (mtype);
+  return mtype;
 }
 
 /* Return a pointer-to-method type, for a method of type TO_TYPE.  */
@@ -678,7 +678,7 @@ allocate_stub_method (struct type *type)
                     TYPE_OBJFILE (type));
   TYPE_TARGET_TYPE (mtype) = type;
   /*  _DOMAIN_TYPE (mtype) = unknown yet */
-  return (mtype);
+  return mtype;
 }
 
 /* Create a range type using either a blank type supplied in
@@ -830,7 +830,7 @@ create_array_type (struct type *result_type,
   if (TYPE_LENGTH (result_type) == 0)
     TYPE_TARGET_STUB (result_type) = 1;
 
-  return (result_type);
+  return result_type;
 }
 
 /* Create a string type using either a blank type supplied in
@@ -857,7 +857,7 @@ create_string_type (struct type *result_type,
                                   string_char_type,
                                   range_type);
   TYPE_CODE (result_type) = TYPE_CODE_STRING;
-  return (result_type);
+  return result_type;
 }
 
 struct type *
@@ -884,7 +884,7 @@ create_set_type (struct type *result_type, struct type *domain_type)
     }
   TYPE_FIELD_TYPE (result_type, 0) = domain_type;
 
-  return (result_type);
+  return result_type;
 }
 
 void
@@ -1049,11 +1049,11 @@ lookup_typename (char *name, struct block *block, int noerr)
                                                    name);
       if (tmp)
        {
-         return (tmp);
+         return tmp;
        }
       else if (!tmp && noerr)
        {
-         return (NULL);
+         return NULL;
        }
       else
        {
@@ -1127,14 +1127,14 @@ lookup_union (char *name, struct block *block)
   t = SYMBOL_TYPE (sym);
 
   if (TYPE_CODE (t) == TYPE_CODE_UNION)
-    return (t);
+    return t;
 
   /* C++ unions may come out with TYPE_CODE_CLASS, but we look at
    * a further "declared_type" field to discover it is really a union.
    */
   if (HAVE_CPLUS_STRUCT (t))
     if (TYPE_DECLARED_TYPE (t) == DECLARED_TYPE_UNION)
-      return (t);
+      return t;
 
   /* If we get here, it's not a union.  */
   error (_("This context has class, struct or enum %s, not a union."), 
@@ -1803,7 +1803,7 @@ init_type (enum type_code code, int length, int flags,
     {
       INIT_CPLUS_SPECIFIC (type);
     }
-  return (type);
+  return type;
 }
 
 /* Helper function.  Create an empty composite type.  */
This page took 0.032226 seconds and 4 git commands to generate.