diff options
author | Tom Tromey <tom@tromey.com> | 2023-10-14 13:31:57 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-10-29 10:35:29 -0600 |
commit | 04f0f42bcf4fb5f7bbde0b954f816c5f6ff7f571 (patch) | |
tree | b00c3fd6c89a117f426d51d2249011170ddb73f5 /gdb/dwarf2/read-debug-names.c | |
parent | c7224db7af39652f36fd538ac997eb40cc79d770 (diff) | |
download | gdb-04f0f42bcf4fb5f7bbde0b954f816c5f6ff7f571.zip gdb-04f0f42bcf4fb5f7bbde0b954f816c5f6ff7f571.tar.gz gdb-04f0f42bcf4fb5f7bbde0b954f816c5f6ff7f571.tar.bz2 |
Move read_addrmap_from_aranges to new file
In the interest of shrinking dwarf2/read.c a little more, this patch
moves the code that deciphers .debug_aranges into a new file.
Reviewed-By: Guinevere Larsen <blarsen@redhat.com>
Diffstat (limited to 'gdb/dwarf2/read-debug-names.c')
-rw-r--r-- | gdb/dwarf2/read-debug-names.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/dwarf2/read-debug-names.c b/gdb/dwarf2/read-debug-names.c index 89f5df6..c1b62b3 100644 --- a/gdb/dwarf2/read-debug-names.c +++ b/gdb/dwarf2/read-debug-names.c @@ -19,6 +19,7 @@ #include "defs.h" #include "read-debug-names.h" +#include "dwarf2/aranges.h" #include "complaints.h" #include "cp-support.h" |