diff options
Diffstat (limited to 'ld/ldfile.c')
-rw-r--r-- | ld/ldfile.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/ld/ldfile.c b/ld/ldfile.c index c9c9541..05889f2 100644 --- a/ld/ldfile.c +++ b/ld/ldfile.c @@ -304,19 +304,7 @@ success: if (bfd_check_format (entry->the_bfd, bfd_object) && link_info.lto_plugin_active && !no_more_claiming) - { - int fd = open (attempt, O_RDONLY | O_BINARY); - if (fd >= 0) - { - struct ld_plugin_input_file file; - - file.name = attempt; - file.offset = 0; - file.filesize = lseek (fd, 0, SEEK_END); - file.fd = fd; - plugin_maybe_claim (&file, entry); - } - } + plugin_maybe_claim (entry); #endif /* ENABLE_PLUGINS */ /* It opened OK, the format checked out, and the plugins have had |