diff options
author | Doug Evans <xdje42@gmail.com> | 2015-01-24 11:17:08 -0800 |
---|---|---|
committer | Doug Evans <xdje42@gmail.com> | 2015-01-24 11:17:08 -0800 |
commit | 734ae1256daf5867721f1d730c2cf9586d6efcab (patch) | |
tree | 08b01d193204fc2ed79207ad918322c1da56cfcc /gdb | |
parent | 527f3840e1af8bc2e3173922ddae15d0021ed9b1 (diff) | |
download | gdb-734ae1256daf5867721f1d730c2cf9586d6efcab.zip gdb-734ae1256daf5867721f1d730c2cf9586d6efcab.tar.gz gdb-734ae1256daf5867721f1d730c2cf9586d6efcab.tar.bz2 |
gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete.
gdb/ChangeLog:
* gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/gdbtypes.h | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2e7e559..837ce01 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2015-01-24 Doug Evans <xdje42@gmail.com> + + * gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete. + 2015-01-24 Jan Kratochvil <jan.kratochvil@redhat.com> Fix 100x slowdown regression on DWZ files. diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h index ba5c857..3cf09c5 100644 --- a/gdb/gdbtypes.h +++ b/gdb/gdbtypes.h @@ -1237,7 +1237,6 @@ extern void allocate_gnat_aux_type (struct type *); #define TYPE_NFN_FIELDS(thistype) TYPE_CPLUS_SPECIFIC(thistype)->nfn_fields #define TYPE_SPECIFIC_FIELD(thistype) \ TYPE_MAIN_TYPE(thistype)->type_specific_field -#define TYPE_TYPE_SPECIFIC(thistype) TYPE_MAIN_TYPE(thistype)->type_specific /* We need this tap-dance with the TYPE_RAW_SPECIFIC because of the case where we're trying to print an Ada array using the C language. In that case, there is no "cplus_stuff", but the C language assumes |