X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=bfd%2Faout-cris.c;h=d6221d17e76d606919ef3b2ef0c29b667ccd6b8e;hb=ad172eaa4f5ff973890a6c37574946cecf0668b0;hp=30ab2b5f4943c774e94d095507e81a37b75c3f16;hpb=b3adc24a0713411ab38a21dc894dd40dbc5c8f4f;p=deliverable%2Fbinutils-gdb.git diff --git a/bfd/aout-cris.c b/bfd/aout-cris.c index 30ab2b5f49..d6221d17e7 100644 --- a/bfd/aout-cris.c +++ b/bfd/aout-cris.c @@ -56,9 +56,6 @@ #define TARGET_PAGE_SIZE SEGMENT_SIZE #define TARGETNAME "a.out-cris" -/* The definition here seems not used; just provided as a convention. */ -#define DEFAULT_ARCH bfd_arch_cris - /* Do not "beautify" the CONCAT* macro args. Traditional C will not remove whitespace added here, and thus will fail to concatenate the tokens. */ @@ -92,9 +89,8 @@ static bfd_boolean MY (set_sizes) (bfd *); through SET_ARCH_MACH. The default bfd_default_set_arch_mach will not call set_sizes. */ -#define MY_set_arch_mach NAME (aout, set_arch_mach) #define SET_ARCH_MACH(BFD, EXECP) \ - MY_set_arch_mach (BFD, DEFAULT_ARCH, N_MACHTYPE (EXECP)) + bfd_set_arch_mach (BFD, bfd_arch_cris, N_MACHTYPE (EXECP)) /* These macros describe the binary layout of the reloc information we use in a file. */ @@ -231,12 +227,14 @@ MY (swap_ext_reloc_in) (bfd *abfd, cache_ptr->address = (GET_SWORD (abfd, bytes->r_address)); /* Now the fun stuff. */ - r_index = (bytes->r_index[2] << 16) - | (bytes->r_index[1] << 8) - | bytes->r_index[0]; + r_index = (((unsigned int) bytes->r_index[2] << 16) + | ((unsigned int) bytes->r_index[1] << 8) + | bytes->r_index[0]); + r_extern = (0 != (bytes->r_type[0] & RELOC_EXT_BITS_EXTERN_LITTLE)); - r_type = ((bytes->r_type[0]) >> RELOC_EXT_BITS_TYPE_SH_LITTLE) - & RELOC_EXT_BITS_TYPE_LITTLE; + + r_type = ((bytes->r_type[0] & RELOC_EXT_BITS_TYPE_LITTLE) + >> RELOC_EXT_BITS_TYPE_SH_LITTLE); if (r_type > 2) {