mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 10:35:12 +08:00
* elf64-alpha.c (elf64_alpha_find_nearest_line): Query dwarf2
before mdebug.
This commit is contained in:
parent
f8bf377815
commit
9540464302
@ -1,3 +1,8 @@
|
|||||||
|
2001-01-30 Curtis L. Janssen <cljanss@ca.sandia.gov>
|
||||||
|
|
||||||
|
* elf64-alpha.c (elf64_alpha_find_nearest_line): Query dwarf2
|
||||||
|
before mdebug.
|
||||||
|
|
||||||
2001-01-26 Richard Henderson <rth@redhat.com>
|
2001-01-26 Richard Henderson <rth@redhat.com>
|
||||||
|
|
||||||
* elfxx-ia64.c (elfNN_ia64_dynamic_symbol_p): Return false
|
* elfxx-ia64.c (elfNN_ia64_dynamic_symbol_p): Return false
|
||||||
|
@ -2105,6 +2105,12 @@ elf64_alpha_find_nearest_line (abfd, section, symbols, offset, filename_ptr,
|
|||||||
{
|
{
|
||||||
asection *msec;
|
asection *msec;
|
||||||
|
|
||||||
|
if (_bfd_dwarf2_find_nearest_line (abfd, section, symbols, offset,
|
||||||
|
filename_ptr, functionname_ptr,
|
||||||
|
line_ptr, 0,
|
||||||
|
&elf_tdata (abfd)->dwarf2_find_line_info))
|
||||||
|
return true;
|
||||||
|
|
||||||
msec = bfd_get_section_by_name (abfd, ".mdebug");
|
msec = bfd_get_section_by_name (abfd, ".mdebug");
|
||||||
if (msec != NULL)
|
if (msec != NULL)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user