aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2009-04-10 03:36:32 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2009-04-10 03:36:32 +0000
commitc16abbdefa03efac06d87fe181e86396cb915886 (patch)
treec335e118081122317878da0806ac1ee9188fa03b /gdb
parentea6906eee32975528cf64b61fbd8c193ed14f6f1 (diff)
downloadgdb-c16abbdefa03efac06d87fe181e86396cb915886.zip
gdb-c16abbdefa03efac06d87fe181e86396cb915886.tar.gz
gdb-c16abbdefa03efac06d87fe181e86396cb915886.tar.bz2
* gdbtypes.c: Remove excessive parentheses at the return keywords.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/gdbtypes.c24
2 files changed, 16 insertions, 12 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index f6e4d59..a855db7 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -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.
diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c
index 8102321..fb52e1a 100644
--- a/gdb/gdbtypes.c
+++ b/gdb/gdbtypes.c
@@ -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. */