Remove unused field cooked_index::m_start
authorTom Tromey <tromey@adacore.com>
Fri, 13 May 2022 19:47:39 +0000 (13:47 -0600)
committerTom Tromey <tromey@adacore.com>
Fri, 13 May 2022 19:47:39 +0000 (13:47 -0600)
cooked_index::m_start is unused and can be removed.  I think this was
a leftover from a previous approach in the index finalization code,
and then when rewriting it I forgot to remove it.

Tested by rebuilding.

gdb/dwarf2/cooked-index.h

index 1d229586948ffc5a3b0a3437f83d9cef67e591e6..ad4de05ba52cccc49cbbe13016c28868a7348f79 100644 (file)
@@ -230,11 +230,6 @@ private:
   /* If we found "main" or an entry with 'is_main' set, store it
      here.  */
   cooked_index_entry *m_main = nullptr;
-  /* When constructing the index, entries are stored on a linked list.
-     This member points to the head of that list.  Later, they are
-     entered into the hash table, at which point this is no longer
-     used.  */
-  cooked_index_entry *m_start = nullptr;
   /* The addrmap.  This maps address ranges to dwarf2_per_cu_data
      objects.  */
   addrmap *m_addrmap = nullptr;