diff options
author | Nick Clifton <nickc@redhat.com> | 2002-06-19 10:07:37 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-06-19 10:07:37 +0000 |
commit | cc36acdfd5cabcf82bfdfd4951fa8a9480601848 (patch) | |
tree | 865ff4fe9db75bb430416560178889765146b673 /bfd/elflink.h | |
parent | 7d0a848ef992287d77b941f0a3a501b2a0023f8c (diff) | |
download | gdb-cc36acdfd5cabcf82bfdfd4951fa8a9480601848.zip gdb-cc36acdfd5cabcf82bfdfd4951fa8a9480601848.tar.gz gdb-cc36acdfd5cabcf82bfdfd4951fa8a9480601848.tar.bz2 |
If the target does not support an ELF style has table, return true, indicating
that nothing needed to be done, rather than false, indicating that the
section's size could not be computed.
Diffstat (limited to 'bfd/elflink.h')
-rw-r--r-- | bfd/elflink.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elflink.h b/bfd/elflink.h index 9ba13fd..b442361 100644 --- a/bfd/elflink.h +++ b/bfd/elflink.h @@ -3053,7 +3053,7 @@ NAME(bfd_elf,size_dynamic_sections) (output_bfd, soname, rpath, return true; if (! is_elf_hash_table (info)) - return false; + return true; /* Any syms created from now on start with -1 in got.refcount/offset and plt.refcount/offset. */ |