diff options
author | Tom Tromey <tom@tromey.com> | 2021-03-20 17:23:40 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2021-03-20 17:23:40 -0600 |
commit | 701823751bec1bbf2f1c96463994f894d33d2238 (patch) | |
tree | ae4422b4724505c1bcb6f977d278786494fcd903 /gdb/machoread.c | |
parent | 18038e6363e934634a45c6671b4808310a0035bb (diff) | |
download | gdb-701823751bec1bbf2f1c96463994f894d33d2238.zip gdb-701823751bec1bbf2f1c96463994f894d33d2238.tar.gz gdb-701823751bec1bbf2f1c96463994f894d33d2238.tar.bz2 |
Introduce dwarf2/public.h
This moves some more DWARF code out of symfile.h and into a new
header, dwarf2/public.h. This header is intended to describe the
public API of the DWARF reader.
gdb/ChangeLog
2021-03-20 Tom Tromey <tom@tromey.com>
* coffread.c: Include dwarf2/public.h.
* dwarf2/frame.c: Include dwarf2/public.h.
* dwarf2/index-write.h: Include dwarf2/public.h, not symfile.h.
* dwarf2/public.h: New file.
* dwarf2/read.c: Include dwarf2/public.h.
* elfread.c: Include dwarf2/public.h.
* machoread.c: Include dwarf2/public.h.
* symfile.h (dwarf2_has_info, enum dw_index_kind)
(dwarf2_initialize_objfile, dwarf2_build_psymtabs)
(dwarf2_build_frame_info): Move to dwarf2/public.h.
* xcoffread.c: Include dwarf2/public.h.
Diffstat (limited to 'gdb/machoread.c')
-rw-r--r-- | gdb/machoread.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/machoread.c b/gdb/machoread.c index 0ff61e1..ff50ae5 100644 --- a/gdb/machoread.c +++ b/gdb/machoread.c @@ -32,6 +32,7 @@ #include "gdb_bfd.h" #include <string> #include <algorithm> +#include "dwarf2/public.h" /* If non-zero displays debugging message. */ static unsigned int mach_o_debug_level = 0; |