From 687d6395d7108065dd97404d72076c6f6c8e71ff Mon Sep 17 00:00:00 2001 From: Michael Snyder Date: Sat, 11 Aug 2007 00:28:30 +0000 Subject: [PATCH] 2007-08-10 Michael Snyder * gdbtypes.c: Coding standard cleanup. --- gdb/ChangeLog | 1 + gdb/gdbtypes.c | 28 ++++++++++++++-------------- 2 files changed, 15 insertions(+), 14 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0896edab5f..b998c2eb56 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,6 @@ 2007-08-10 Michael Snyder + * 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 3550543a46..672be70fb0 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. */ -- 2.34.1