Debug info for function in Windows PE binary on wrong instruction
PR 29038 * coffgen.c (coff_find_nearest_line_with_names): Fix typo retrieving saved bias.
This commit is contained in:
parent
de83289ef3
commit
7d41169b6d
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2022-04-08 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR 29038
|
||||
* coffgen.c (coff_find_nearest_line_with_names): Fix typo
|
||||
retrieving saved bias.
|
||||
|
||||
2022-04-07 Mark Harmstone <mark@harmstone.com>
|
||||
|
||||
* coff-i386.c (in_reloc_p): Add R_SECTION.
|
||||
|
|
|
@ -2382,7 +2382,7 @@ coff_find_nearest_line_with_names (bfd *abfd,
|
|||
}
|
||||
|
||||
if (sec_data != NULL && sec_data->saved_bias)
|
||||
bias = sec_data->saved_bias;
|
||||
bias = sec_data->bias;
|
||||
else if (symbols)
|
||||
{
|
||||
bias = _bfd_dwarf2_find_symbol_bias (symbols,
|
||||
|
|
Loading…
Add table
Reference in a new issue