Mon Oct 10 16:24:44 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
+ * cofflink.c (_bfd_coff_final_link): Cast argument to bfd_h_put_32
+ to correct type.
+ (coff_read_string_table): Cast argument to bfd_h_get_32 to correct
+ type.
+ * elfcode.h (elf_link_output_extsym): Cast argument to
+ bfd_elf_hash to correct type.
+
* elf32-sparc.c (elf_sparc_howto_table): The PC10, PC22, and
WPLT30 relocations are PC-relative.
and the size into the `size' field. This is backwards from
how BFD handles it, so reverse it here. */
sym.st_size = value;
- sym.st_value = type_ptr ? type_ptr->internal_elf_sym.st_value : 16;
+ if (type_ptr == NULL
+ || type_ptr->internal_elf_sym.st_value == 0)
+ sym.st_value = value >= 16 ? 16 : (1 << bfd_log2 (value));
+ else
+ sym.st_value = type_ptr->internal_elf_sym.st_value;
sym.st_shndx = elf_section_from_bfd_section (abfd,
syms[idx]->section);
}
+ h->dynindx));
bucketcount = elf_hash_table (finfo->info)->bucketcount;
- bucket = bfd_elf_hash (h->root.root.string) % bucketcount;
+ bucket = bfd_elf_hash ((const unsigned char *) h->root.root.string) % bucketcount;
bucketpos = ((bfd_byte *) finfo->hash_sec->contents
+ (bucket + 2) * (ARCH_SIZE / 8));
chain = get_word (finfo->output_bfd, bucketpos);