diff options
author | Tom Tromey <tom@tromey.com> | 2020-09-06 15:50:59 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2020-09-06 16:13:32 -0600 |
commit | 3e6ff9336923626f9a0749621f7db7547771ce19 (patch) | |
tree | 0ecf337f2d75df9a738daf11a79d9d2b209eff86 /gdb | |
parent | 78b43ec962a8b8beb7bb2d95cd0bebb85811027f (diff) | |
download | binutils-3e6ff9336923626f9a0749621f7db7547771ce19.zip binutils-3e6ff9336923626f9a0749621f7db7547771ce19.tar.gz binutils-3e6ff9336923626f9a0749621f7db7547771ce19.tar.bz2 |
Remove unused declaration from symfile.h
dwarf2_free_objfile no longer exists, so this patch removes its
declaration from symfile.h.
gdb/ChangeLog
2020-09-06 Tom Tromey <tom@tromey.com>
* symfile.h (dwarf2_free_objfile): Don't declare.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/symfile.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index faa3a61..65fc955 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2020-09-06 Tom Tromey <tom@tromey.com> + + * symfile.h (dwarf2_free_objfile): Don't declare. + 2020-09-03 Alok Kumar Sharma <AlokKumar.Sharma@amd.com> * gdb/i386-tdep.c (i386_floatformat_for_type): Added conditions diff --git a/gdb/symfile.h b/gdb/symfile.h index fe79f79..756f34c 100644 --- a/gdb/symfile.h +++ b/gdb/symfile.h @@ -637,8 +637,6 @@ extern bool dwarf2_initialize_objfile (struct objfile *objfile, extern void dwarf2_build_psymtabs (struct objfile *); extern void dwarf2_build_frame_info (struct objfile *); -void dwarf2_free_objfile (struct objfile *); - /* From minidebug.c. */ extern gdb_bfd_ref_ptr find_separate_debug_file_in_section (struct objfile *); |