diff options
author | Tom Tromey <tom@tromey.com> | 2018-01-05 17:26:21 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-01-17 11:28:44 -0700 |
commit | 9e14690d06ac55136b7f051a2d2b8e173fa3bbdf (patch) | |
tree | c6ee55c3f5fc02440d8b2f00c6e0bee5b476361e /gdb | |
parent | 50a820477b5d48d4c2d28ca1c22ba6d93c9fd7cb (diff) | |
download | gdb-9e14690d06ac55136b7f051a2d2b8e173fa3bbdf.zip gdb-9e14690d06ac55136b7f051a2d2b8e173fa3bbdf.tar.gz gdb-9e14690d06ac55136b7f051a2d2b8e173fa3bbdf.tar.bz2 |
Remove symbolp typedef
This removes the symbolp typedef from dwarf2read.c. It is no longer
used.
2018-01-17 Tom Tromey <tom@tromey.com>
* dwarf2read.c (symbolp): Remove typedef. Don't instantiate VEC.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/dwarf2read.c | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 871d038..d1510b9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2018-01-17 Tom Tromey <tom@tromey.com> + * dwarf2read.c (symbolp): Remove typedef. Don't instantiate VEC. + +2018-01-17 Tom Tromey <tom@tromey.com> + * gdbtypes.h (add_dyn_prop): Remove objfile parameter. * gdbtypes.c (add_dyn_prop): Remove objfile parameter. (create_array_type_with_stride): Update. diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 53c57ef..d9ebf4e 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -87,9 +87,6 @@ #include <set> #include <forward_list> -typedef struct symbol *symbolp; -DEF_VEC_P (symbolp); - /* When == 1, print basic high level tracing messages. When > 1, be more verbose. This is in contrast to the low level DIE reading of dwarf_die_debug. */ |