forked from Imagelibrary/binutils-gdb
Check format against bfd_object directly
There is no need to call bfd_check_format. We should just check format against bfd_object directly. * plugin.c (plugin_maybe_claim): Check format against bfd_object directly.
This commit is contained in:
@@ -1061,7 +1061,7 @@ plugin_maybe_claim (lang_input_statement_type *entry)
|
||||
einfo (_("%P%F: %s: plugin reported error claiming file\n"),
|
||||
plugin_error_plugin ());
|
||||
|
||||
if (input->fd != -1 && bfd_check_format (ibfd, bfd_object))
|
||||
if (input->fd != -1 && ibfd->format == bfd_object)
|
||||
{
|
||||
/* FIXME: fd belongs to us, not the plugin. IR for GCC plugin,
|
||||
which doesn't need fd after plugin_call_claim_file, is
|
||||
|
||||
Reference in New Issue
Block a user