From: nickc Date: Wed, 27 Mar 2002 11:28:17 +0000 (+0000) Subject: Copy the r_offset field into and out of the internal reloc strcuture. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=bd4abb6a1f308c606a994c2fdd265290fa68694f;p=pf3gnuchains%2Fpf3gnuchains3x.git Copy the r_offset field into and out of the internal reloc strcuture. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index c32ee17d48..7ed6fe015d 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2002-03-27 Nick Clifton + + * coff-arm.c (SWAP_IN_RELOC_OFFSET): Define. + (SWAP_OUT_RELOC_OFFSET): Define. + 2002-03-27 Gregory Steuck * elf.c (_bfd_elf_get_symtab_upper_bound): Leave space for diff --git a/bfd/coff-arm.c b/bfd/coff-arm.c index ca08131d1c..fd0e0dd15d 100644 --- a/bfd/coff-arm.c +++ b/bfd/coff-arm.c @@ -900,6 +900,11 @@ coff_arm_reloc_type_lookup (abfd, code) #define BADMAG(x) ARMBADMAG(x) #define ARM 1 /* Customize coffcode.h */ +/* Make sure that the 'r_offset' field is copied properly + so that identical binaries will compare the same. */ +#define SWAP_IN_RELOC_OFFSET H_GET_32 +#define SWAP_OUT_RELOC_OFFSET H_PUT_32 + /* Extend the coff_link_hash_table structure with a few ARM specific fields. This allows us to store global data here without actually creating any global variables, which is a no-no in the BFD world. */