mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 15:18:37 +08:00
2005-06-09 H.J. Lu <hongjiu.lu@intel.com>
PR 1000 * dwarf2.c (lookup_address_in_line_info_table): Restore code handling NULL function info, removed with 2005-04-03 change.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2005-06-09 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
PR 1000
|
||||||
|
* dwarf2.c (lookup_address_in_line_info_table): Restore code
|
||||||
|
handling NULL function info, removed with 2005-04-03 change.
|
||||||
|
|
||||||
2005-06-08 Mark Mitchell <mark@codesourcery.com>
|
2005-06-08 Mark Mitchell <mark@codesourcery.com>
|
||||||
|
|
||||||
* opncls.c (bfd_fopen): Mark returned BFD as cacheable if FD == -1.
|
* opncls.c (bfd_fopen): Mark returned BFD as cacheable if FD == -1.
|
||||||
|
@ -1326,6 +1326,11 @@ lookup_address_in_line_info_table (struct line_info_table *table,
|
|||||||
*linenumber_ptr = each_line->line;
|
*linenumber_ptr = each_line->line;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
*filename_ptr = each_line->filename;
|
||||||
|
*linenumber_ptr = each_line->line;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (addr_match && !each_line->end_sequence)
|
if (addr_match && !each_line->end_sequence)
|
||||||
|
Reference in New Issue
Block a user