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:
H.J. Lu
2005-06-09 13:32:30 +00:00
parent a366f4ff7b
commit 6bd00c5db5
2 changed files with 11 additions and 0 deletions

View File

@@ -1326,6 +1326,11 @@ lookup_address_in_line_info_table (struct line_info_table *table,
*linenumber_ptr = each_line->line;
}
}
else
{
*filename_ptr = each_line->filename;
*linenumber_ptr = each_line->line;
}
}
if (addr_match && !each_line->end_sequence)