diff options
author | Doug Evans <dje@google.com> | 2010-12-08 21:35:59 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2010-12-08 21:35:59 +0000 |
commit | 4e4666e6f7bc46a81ed0f3dee2aa4613f635e0b1 (patch) | |
tree | 42ba3c6a2aab01efdbeadf7c07f5d736b6cc1ce9 /gdb | |
parent | 73e2eb35ba05f0644f160a2815ac2cafcbb3b630 (diff) | |
download | gdb-4e4666e6f7bc46a81ed0f3dee2aa4613f635e0b1.zip gdb-4e4666e6f7bc46a81ed0f3dee2aa4613f635e0b1.tar.gz gdb-4e4666e6f7bc46a81ed0f3dee2aa4613f635e0b1.tar.bz2 |
* gdbtypes.h (TYPE_IS_OPAQUE): Reformat.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 2 | ||||
-rw-r--r-- | gdb/gdbtypes.h | 13 |
2 files changed, 9 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 75c7e32..0d1deb7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2010-12-08 Doug Evans <dje@google.com> + * gdbtypes.h (TYPE_IS_OPAQUE): Reformat. + * gdbtypes.c (check_typedef): Tweak comment. PR symtab/12302 diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h index 51eb445..1ce2d91 100644 --- a/gdb/gdbtypes.h +++ b/gdb/gdbtypes.h @@ -1094,12 +1094,13 @@ extern void allocate_gnat_aux_type (struct type *); #define TYPE_TYPEDEF_FIELD_COUNT(thistype) \ TYPE_CPLUS_SPECIFIC (thistype)->typedef_field_count -#define TYPE_IS_OPAQUE(thistype) (((TYPE_CODE (thistype) == TYPE_CODE_STRUCT) || \ - (TYPE_CODE (thistype) == TYPE_CODE_UNION)) && \ - (TYPE_NFIELDS (thistype) == 0) && \ - (!HAVE_CPLUS_STRUCT (thistype) \ - || TYPE_NFN_FIELDS (thistype) == 0) && \ - (TYPE_STUB (thistype) || !TYPE_STUB_SUPPORTED (thistype))) +#define TYPE_IS_OPAQUE(thistype) \ + (((TYPE_CODE (thistype) == TYPE_CODE_STRUCT) \ + || (TYPE_CODE (thistype) == TYPE_CODE_UNION)) \ + && (TYPE_NFIELDS (thistype) == 0) \ + && (!HAVE_CPLUS_STRUCT (thistype) \ + || TYPE_NFN_FIELDS (thistype) == 0) \ + && (TYPE_STUB (thistype) || !TYPE_STUB_SUPPORTED (thistype))) /* A helper macro that returns the name of an error type. If the type has a name, it is used; otherwise, a default is used. */ |