Fix compilation for mingw64.
* coffcode.h (coff_slurp_symbol_table): Add intptr_t intermediate typecast to avoid warning. * elf32-rx.c: Add "bfd_stdint.h" include required for int32_t type usage. * elfxx-ia64.c (elfNN_ia64_relax_br): Use intptr_t typeacast instead of long for pointer to avoid warning. (elfNN_ia64_relax_brl): Idem. (elfNN_ia64_install_value): Idem. * vms-alpha.c (_bfd_vms_slurp_etir): Idem.
This commit is contained in:
parent
4a58c4bdc9
commit
d68cd58c00
5 changed files with 21 additions and 7 deletions
|
@ -1709,7 +1709,7 @@ _bfd_vms_slurp_etir (bfd *abfd, struct bfd_link_info *info)
|
|||
#if VMS_DEBUG
|
||||
_bfd_vms_debug (4, "etir: %s(%d)\n",
|
||||
_bfd_vms_etir_name (cmd), cmd);
|
||||
_bfd_hexdump (8, ptr, cmd_length - 4, (long) ptr);
|
||||
_bfd_hexdump (8, ptr, cmd_length - 4, (intptr_t) ptr);
|
||||
#endif
|
||||
|
||||
switch (cmd)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue