diff options
author | Joel Brobecker <brobecker@gnat.com> | 2013-10-02 09:22:32 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2013-10-02 09:22:32 +0000 |
commit | 6b9780fbbd65d5a1cf56a15552c50bd6bfa10a10 (patch) | |
tree | 2096e52b7437446d47d3ec90383e3aa36aa7655d /gdb/ChangeLog | |
parent | 751e7549b07aef34e4657e8e9cb86ec9ae4656b1 (diff) | |
download | gdb-6b9780fbbd65d5a1cf56a15552c50bd6bfa10a10.zip gdb-6b9780fbbd65d5a1cf56a15552c50bd6bfa10a10.tar.gz gdb-6b9780fbbd65d5a1cf56a15552c50bd6bfa10a10.tar.bz2 |
Delete search_symbols_equal (use compare_search_syms instead).
This avoids duplicating the logic comparing two symbol_search
objects (in search_symbols_equal and compare_search_syms).
gdb/ChangeLog:
* symtab.c (search_symbols_equal): Delete.
(sort_search_symbols_remove_dups): Replace call to
search_symbols_equal by call to compare_search_syms,
adjusting as necessary.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c399655..84e8cc5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2013-10-02 Joel Brobecker <brobecker@adacore.com> + + * symtab.c (search_symbols_equal): Delete. + (sort_search_symbols_remove_dups): Replace call to + search_symbols_equal by call to compare_search_syms, + adjusting as necessary. + 2013-10-02 Phil Muldoon <pmuldoon@redhat.com> PR python/15579 |