From 6fd931f2d66af8398b2fae3ab5f5afe091b8362f Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Mon, 12 Jun 2017 00:43:55 +0100 Subject: [PATCH] Code cleanup: dwarf2read.c:uniquify_cu_indices: Use std::unique gdb/ChangeLog: 2017-06-12 Pedro Alves * dwarf2read.c (uniquify_cu_indices): Use std::unique and std::vector::erase. --- gdb/ChangeLog | 5 +++++ gdb/dwarf2read.c | 21 ++++----------------- 2 files changed, 9 insertions(+), 17 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 037fa0c579..316e03af7c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2017-06-12 Pedro Alves + + * dwarf2read.c (uniquify_cu_indices): Use std::unique and + std::vector::erase. + 2017-06-12 Jan Kratochvil Code cleanup: C++ify .gdb_index producer. diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index ef21092aab..0c9e275850 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -23370,23 +23370,10 @@ uniquify_cu_indices (struct mapped_symtab *symtab) { if (entry && !entry->cu_indices.empty ()) { - unsigned int next_to_insert, next_to_check; - offset_type last_value; - - std::sort (entry->cu_indices.begin (), entry->cu_indices.end ()); - - last_value = entry->cu_indices[0]; - next_to_insert = 1; - for (next_to_check = 1; - next_to_check < entry->cu_indices.size (); - ++next_to_check) - if (entry->cu_indices[next_to_check] != last_value) - { - last_value = entry->cu_indices[next_to_check]; - entry->cu_indices[next_to_insert] = last_value; - ++next_to_insert; - } - entry->cu_indices.resize (next_to_insert); + auto &cu_indices = entry->cu_indices; + std::sort (cu_indices.begin (), cu_indices.end ()); + auto from = std::unique (cu_indices.begin (), cu_indices.end ()); + cu_indices.erase (from, cu_indices.end ()); } } } -- 2.34.1