diff options
author | Alan Modra <amodra@gmail.com> | 2001-11-19 03:01:43 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-11-19 03:01:43 +0000 |
commit | 2a5aaecb4aabbc6320ef34a5c127bfae1e7748b6 (patch) | |
tree | 8b2a14f8d4d549ae44d8ccc3148495d3b1b1827d /bfd/elf32-hppa.c | |
parent | e5ee5df1907fdda58597ffe44a32e3ca6d4eee68 (diff) | |
download | gdb-2a5aaecb4aabbc6320ef34a5c127bfae1e7748b6.zip gdb-2a5aaecb4aabbc6320ef34a5c127bfae1e7748b6.tar.gz gdb-2a5aaecb4aabbc6320ef34a5c127bfae1e7748b6.tar.bz2 |
* elf32-hppa.c (elf32_hppa_size_stubs): Don't consider undefined
millicode syms as candidates for import stubs.
Diffstat (limited to 'bfd/elf32-hppa.c')
-rw-r--r-- | bfd/elf32-hppa.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bfd/elf32-hppa.c b/bfd/elf32-hppa.c index ea8bb32..cf67af4 100644 --- a/bfd/elf32-hppa.c +++ b/bfd/elf32-hppa.c @@ -3025,7 +3025,8 @@ elf32_hppa_size_stubs (output_bfd, stub_bfd, info, multi_subspace, group_size, if (! (info->shared && !info->no_undefined && (ELF_ST_VISIBILITY (hash->elf.other) - == STV_DEFAULT))) + == STV_DEFAULT) + && hash->elf.type != STT_PARISC_MILLI)) continue; } else |