lto-elf.c (lto_obj_file_open): Also provide filename when elf_begin fails.

* lto-elf.c (lto_obj_file_open): Also provide filename when
	elf_begin fails.

From-SVN: r164394
This commit is contained in:
Gerald Pfeifer 2010-09-18 16:24:38 +00:00 committed by Gerald Pfeifer
parent b4b7e792f0
commit a929ec3d11
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-09-18 Gerald Pfeifer <gerald@pfeifer.com>
* lto-elf.c (lto_obj_file_open): Also provide filename when
elf_begin fails.
2010-09-17 Jan Hubicka <jh@suse.cz>
* lto.c (lto_promote_cross_file_statics): Use const_value_known.

View File

@ -674,7 +674,7 @@ lto_obj_file_open (const char *filename, bool writable)
NULL);
if (!elf_file->elf)
{
error ("could not open ELF file: %s", elf_errmsg (0));
error ("could not open %s as an ELF file: %s", fname, elf_errmsg (0));
goto fail;
}