mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-22 03:58:06 +00:00
Correct the calculation of the use_counts of merged .got entries.
* elf64-alpha.c (elf64_alpha_copy_indirect_symbol): Fix thinko adjusting the use_count of merged .got entries.
This commit is contained in:
parent
e5ca03b41d
commit
68994ca2c0
@ -1,3 +1,8 @@
|
||||
2016-08-09 Jiaming Wei <jmwei@hxgpt.com>
|
||||
|
||||
* elf64-alpha.c (elf64_alpha_copy_indirect_symbol): Fix thinko
|
||||
adjusting the use_count of merged .got entries.
|
||||
|
||||
2016-08-08 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* doc/chew.c (delete_string): Only free the string buffer if it is
|
||||
|
@ -2218,7 +2218,7 @@ elf64_alpha_copy_indirect_symbol (struct bfd_link_info *info,
|
||||
&& gi->reloc_type == gs->reloc_type
|
||||
&& gi->addend == gs->addend)
|
||||
{
|
||||
gi->use_count += gs->use_count;
|
||||
gs->use_count += gi->use_count;
|
||||
goto got_found;
|
||||
}
|
||||
gi->next = hs->got_entries;
|
||||
|
Loading…
Reference in New Issue
Block a user