This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[PATCH RFC 2/5] Remove mapped_index::total_size
- From: Simon Marchi <simon dot marchi at ericsson dot com>
- To: <gdb-patches at sourceware dot org>
- Cc: Simon Marchi <simon dot marchi at ericsson dot com>
- Date: Wed, 9 May 2018 17:26:53 -0400
- Subject: [PATCH RFC 2/5] Remove mapped_index::total_size
- References: <1525901216-15031-1-git-send-email-simon.marchi@ericsson.com>
- Spamdiagnosticmetadata: NSPM
- Spamdiagnosticoutput: 1:99
It is unused.
gdb/ChangeLog:
* dwarf2read.c (mapped_index) <total_size>: Remove.
---
gdb/dwarf2read.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
index 823b498..1c72818 100644
--- a/gdb/dwarf2read.c
+++ b/gdb/dwarf2read.c
@@ -197,9 +197,6 @@ struct mapped_index final : public mapped_index_base
/* Index data format version. */
int version;
- /* The total length of the buffer. */
- off_t total_size;
-
/* The address table data. */
gdb::array_view<const gdb_byte> address_table;
@@ -3500,7 +3497,6 @@ to use the section anyway."),
return 0;
map->version = version;
- map->total_size = section->size;
metadata = (offset_type *) (addr + sizeof (offset_type));
--
2.7.4