forked from Imagelibrary/binutils-gdb
* aout-adobe.c (aout_adobe_set_section_contents): Constify location.
* aoutx.h (NAME(aout,set_section_contents)): Ditto. * bfd-in2.h: Regenerate. * binary.c (binary_set_section_contents): Ditto. * bout.c (b_out_set_section_contents): Ditto. * coff-tic54x.c (tic54x_set_section_contents): Ditto. * coffcode.h (coff_set_section_contents): Ditto. * ecoff.c (_bfd_ecoff_set_section_contents): Ditto. * elf-bfd.h (_bfd_elf_set_section_contents): Ditto. * elf.c (_bfd_elf_set_section_contents): Ditto. * elfxx-mips.c (_bfd_mips_elf_set_section_contents): Ditto. * elfxx-mips.h (_bfd_mips_elf_set_section_contents): Ditto. * i386msdos.c (msdos_set_section_contents): Ditto. * ieee.c (ieee_set_section_contents): Ditto. * ihex.c (ihex_set_section_contents): Ditto. * libaout.h (NAME(aout,set_section_contents)): Ditto. * libbfd-in.h (_bfd_nowrite_set_section_contents): Ditto. (_bfd_generic_set_section_contents): Ditto. * libbfd.h: Regenerate. * libbfd.c (_bfd_generic_set_section_contents): Ditto. * libecoff.h (_bfd_ecoff_set_section_contents): Ditto. * libnlm.h (nlmNAME(set_section_contents)): Ditto. (struct nlm_backend_data <nlm_mangle_relocs>): Ditto. * mmo.c (mmo_set_section_contents): Ditto. * nlm32-alpha.c (nlm_alpha_mangle_relocs): Ditto. * nlm32-i386.c (nlm_i386_mangle_relocs): Ditto. * nlm32-ppc.c (nlm_powerpc_mangle_relocs): Ditto. * nlm32-sparc.c (nlm_sparc_mangle_relocs): Ditto. * nlmcode.h (nlm_set_section_contents): Ditto. * oasys.c (oasys_set_section_contents): Ditto. * pdp11.c (NAME(aout,set_section_contents)): Ditto. * ppcboot.c (ppcboot_set_section_contents): Ditto. * srec.c (srec_set_section_contents): Ditto. * targets.c (BFD_JUMP_TABLE_WRITE <_bfd_set_section_contents>): Ditto. * tekhex.c (tekhex_set_section_contents): Ditto. (move_section_contents): Ditto. * versados.c (versados_set_section_contents): Ditto. * vms-misc.c (_bfd_save_vms_section): Ditto. * vms.c (vms_set_section_contents): Ditto. * vms.h (_bfd_save_vms_section): Ditto.
This commit is contained in:
10
bfd/tekhex.c
10
bfd/tekhex.c
@@ -1,5 +1,5 @@
|
||||
/* BFD backend for Extended Tektronix Hex Format objects.
|
||||
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
|
||||
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003
|
||||
Free Software Foundation, Inc.
|
||||
Written by Steve Chamberlain of Cygnus Support <sac@cygnus.com>.
|
||||
|
||||
@@ -110,13 +110,13 @@ static void out PARAMS ((bfd *, int, char *, char *));
|
||||
static void writesym PARAMS ((char **, const char *));
|
||||
static void writevalue PARAMS ((char **, bfd_vma));
|
||||
static bfd_boolean tekhex_set_section_contents
|
||||
PARAMS ((bfd*, sec_ptr, PTR, file_ptr, bfd_size_type));
|
||||
PARAMS ((bfd*, sec_ptr, const PTR, file_ptr, bfd_size_type));
|
||||
static bfd_boolean tekhex_set_arch_mach
|
||||
PARAMS ((bfd *, enum bfd_architecture, unsigned long));
|
||||
static bfd_boolean tekhex_get_section_contents
|
||||
PARAMS ((bfd *, asection *, PTR, file_ptr, bfd_size_type));
|
||||
static void move_section_contents
|
||||
PARAMS ((bfd *, asection *, PTR, file_ptr, bfd_size_type, bfd_boolean));
|
||||
PARAMS ((bfd *, asection *, const PTR, file_ptr, bfd_size_type, bfd_boolean));
|
||||
static const bfd_target *tekhex_object_p PARAMS ((bfd *));
|
||||
static bfd_boolean tekhex_mkobject PARAMS ((bfd *));
|
||||
static long tekhex_get_symtab_upper_bound PARAMS ((bfd *));
|
||||
@@ -593,7 +593,7 @@ static void
|
||||
move_section_contents (abfd, section, locationp, offset, count, get)
|
||||
bfd *abfd;
|
||||
asection *section;
|
||||
PTR locationp;
|
||||
const PTR locationp;
|
||||
file_ptr offset;
|
||||
bfd_size_type count;
|
||||
bfd_boolean get;
|
||||
@@ -672,7 +672,7 @@ static bfd_boolean
|
||||
tekhex_set_section_contents (abfd, section, locationp, offset, bytes_to_do)
|
||||
bfd *abfd;
|
||||
sec_ptr section;
|
||||
PTR locationp;
|
||||
const PTR locationp;
|
||||
file_ptr offset;
|
||||
bfd_size_type bytes_to_do;
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user