2006-03-11 H.J. Lu <hongjiu.lu@intel.com>

PR ld/2443
	* dwarf2.c (concat_filename): Don't issue an error if file is
	0.
This commit is contained in:
H.J. Lu 2006-03-11 15:01:18 +00:00
parent 253d272cfc
commit 75a657ba49
2 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2006-03-11 H.J. Lu <hongjiu.lu@intel.com>
PR ld/2443
* dwarf2.c (concat_filename): Don't issue an error if file is
0.
2006-03-10 Paul Brook <paul@codesourcery.com>
* elf32-arm.c (INTERWORK_FLAG): Handle EABIv5.

View file

@ -865,8 +865,10 @@ concat_filename (struct line_info_table *table, unsigned int file)
if (file - 1 >= table->num_files)
{
(*_bfd_error_handler)
(_("Dwarf Error: mangled line number section (bad file number)."));
/* FILE == 0 means unknown. */
if (file)
(*_bfd_error_handler)
(_("Dwarf Error: mangled line number section (bad file number)."));
return strdup ("<unknown>");
}