aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@vmware.com>2007-08-11 00:28:30 +0000
committerMichael Snyder <msnyder@vmware.com>2007-08-11 00:28:30 +0000
commit687d6395d7108065dd97404d72076c6f6c8e71ff (patch)
tree1fa6cdc45f0b2aa78a04593ed7f87e7a94bf253e
parent7ba8144421fa4f0b608967acb2fc36a4837187d2 (diff)
downloadgdb-687d6395d7108065dd97404d72076c6f6c8e71ff.zip
gdb-687d6395d7108065dd97404d72076c6f6c8e71ff.tar.gz
gdb-687d6395d7108065dd97404d72076c6f6c8e71ff.tar.bz2
2007-08-10 Michael Snyder <msnyder@access-company.com>
* gdbtypes.c: Coding standard cleanup.
-rw-r--r--gdb/ChangeLog1
-rw-r--r--gdb/gdbtypes.c28
2 files changed, 15 insertions, 14 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 0896eda..b998c2e 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,6 @@
2007-08-10 Michael Snyder <msnyder@access-company.com>
+ * gdbtypes.c: Coding standard cleanup.
* gdbtypes.c: Comment/whitespace cleanup.
* stabsread.c (read_huge_number): Attempt to compute value before
diff --git a/gdb/gdbtypes.c b/gdb/gdbtypes.c
index 3550543..672be70 100644
--- a/gdb/gdbtypes.c
+++ b/gdb/gdbtypes.c
@@ -1196,8 +1196,8 @@ lookup_struct_elt_type (struct type *type, char *name, int noerr)
type = TYPE_TARGET_TYPE (type);
}
- if (TYPE_CODE (type) != TYPE_CODE_STRUCT &&
- TYPE_CODE (type) != TYPE_CODE_UNION)
+ if (TYPE_CODE (type) != TYPE_CODE_STRUCT
+ && TYPE_CODE (type) != TYPE_CODE_UNION)
{
target_terminal_ours ();
gdb_flush (gdb_stdout);
@@ -1874,8 +1874,8 @@ is_ancestor (struct type *base, struct type *dclass)
if (base == dclass)
return 1;
- if (TYPE_NAME (base) && TYPE_NAME (dclass) &&
- !strcmp (TYPE_NAME (base), TYPE_NAME (dclass)))
+ if (TYPE_NAME (base) && TYPE_NAME (dclass)
+ && !strcmp (TYPE_NAME (base), TYPE_NAME (dclass)))
return 1;
for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
@@ -1918,8 +1918,8 @@ has_vtable (struct type *dclass)
vtable. */
if (TYPE_FIELD_VIRTUAL_BITS (dclass))
for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
- if ((!B_TST (TYPE_FIELD_VIRTUAL_BITS (dclass), i)) &&
- (has_vtable (TYPE_FIELD_TYPE (dclass, i))))
+ if ((!B_TST (TYPE_FIELD_VIRTUAL_BITS (dclass), i))
+ && (has_vtable (TYPE_FIELD_TYPE (dclass, i))))
return 1;
/* Well, maybe we don't need a virtual table. */
@@ -1947,8 +1947,8 @@ primary_base_class (struct type *dclass)
return NULL;
for (i = 0; i < TYPE_N_BASECLASSES (dclass); i++)
- if (!TYPE_FIELD_VIRTUAL (dclass, i) &&
- has_vtable (TYPE_FIELD_TYPE (dclass, i)))
+ if (!TYPE_FIELD_VIRTUAL (dclass, i)
+ && has_vtable (TYPE_FIELD_TYPE (dclass, i)))
return TYPE_FIELD_TYPE (dclass, i);
return NULL;
@@ -2123,8 +2123,8 @@ virtual_base_index (struct type *base, struct type *dclass)
struct type *vbase;
int i;
- if ((TYPE_CODE (dclass) != TYPE_CODE_CLASS) ||
- (TYPE_CODE (base) != TYPE_CODE_CLASS))
+ if ((TYPE_CODE (dclass) != TYPE_CODE_CLASS)
+ || (TYPE_CODE (base) != TYPE_CODE_CLASS))
return -1;
i = 0;
@@ -2155,8 +2155,8 @@ virtual_base_index_skip_primaries (struct type *base,
int i, j;
struct type *primary;
- if ((TYPE_CODE (dclass) != TYPE_CODE_CLASS) ||
- (TYPE_CODE (base) != TYPE_CODE_CLASS))
+ if ((TYPE_CODE (dclass) != TYPE_CODE_CLASS)
+ || (TYPE_CODE (base) != TYPE_CODE_CLASS))
return -1;
primary = TYPE_RUNTIME_PTR (dclass) ? TYPE_PRIMARY_BASE (dclass) : NULL;
@@ -2379,8 +2379,8 @@ rank_one_type (struct type *parm, struct type *arg)
really are the same.
*/
- if (TYPE_NAME (parm) && TYPE_NAME (arg) &&
- !strcmp (TYPE_NAME (parm), TYPE_NAME (arg)))
+ if (TYPE_NAME (parm) && TYPE_NAME (arg)
+ && !strcmp (TYPE_NAME (parm), TYPE_NAME (arg)))
return 0;
/* Check if identical after resolving typedefs. */