diff options
author | H.J. Lu <hjl@lucon.org> | 2008-07-18 12:45:33 +0000 |
---|---|---|
committer | H.J. Lu <hjl@lucon.org> | 2008-07-18 12:45:33 +0000 |
commit | b0610dde649100541bdee3e09fd89bc418cbd219 (patch) | |
tree | 1c97824aa2a6ec71d4af264b1e13297826ff2de7 /bfd/elf32-arm.c | |
parent | 52e37b4169adf065c5c625c600273d8ed918e000 (diff) | |
download | binutils-redhat-b0610dde649100541bdee3e09fd89bc418cbd219.tar.gz |
2008-07-18 H.J. Lu <hongjiu.lu@intel.com>
PR ld/6748
* elf32-arm.c (elf32_arm_link_hash_table_create): Initialize
new fields added for ARM long call support.
Diffstat (limited to 'bfd/elf32-arm.c')
-rw-r--r-- | bfd/elf32-arm.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bfd/elf32-arm.c b/bfd/elf32-arm.c index 2ee0bb23b5..8fbaa35411 100644 --- a/bfd/elf32-arm.c +++ b/bfd/elf32-arm.c @@ -2669,6 +2669,13 @@ elf32_arm_link_hash_table_create (bfd *abfd) ret->sym_sec.abfd = NULL; ret->obfd = abfd; ret->tls_ldm_got.refcount = 0; + ret->stub_bfd = NULL; + ret->add_stub_section = NULL; + ret->layout_sections_again = NULL; + ret->stub_group = NULL; + ret->bfd_count = 0; + ret->top_index = 0; + ret->input_list = NULL; if (!bfd_hash_table_init (&ret->stub_hash_table, stub_hash_newfunc, sizeof (struct elf32_arm_stub_hash_entry))) |