diff options
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/ChangeLog-2009 | 8 | ||||
-rw-r--r-- | bfd/ChangeLog-2014 | 2 | ||||
-rw-r--r-- | bfd/ChangeLog-2015 | 2 | ||||
-rw-r--r-- | bfd/xcofflink.c | 4 |
5 files changed, 12 insertions, 8 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 199f89b..d760a4a 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2021-01-01 Nicolas Boulenguez <nicolas@debian.org> + + * xcofflink.c: Correct spelling in comments. + 2021-01-01 Alan Modra <amodra@gmail.com> Update year range in copyright notice of all files. diff --git a/bfd/ChangeLog-2009 b/bfd/ChangeLog-2009 index a3f7b24..1f7f522 100644 --- a/bfd/ChangeLog-2009 +++ b/bfd/ChangeLog-2009 @@ -3868,15 +3868,15 @@ * coffcode.h (coff_pointerize_aux_hook): Update CSECT_SYM_P to check whether a symbol has csect information. (coff_print_aux): Likewise. - * coff-rs6000.c (_bfd_xcoff_swap_aux_in): Handle auxillary csect + * coff-rs6000.c (_bfd_xcoff_swap_aux_in): Handle auxiliary csect information for C_AIX_WEAKEXT too. (_bfd_xcoff_swap_aux_out): Likewise. (xcoff_reloc_type_br): Handle defweak symbols too. - * coff64-rs6000.c (_bfd_xcoff64_swap_aux_in): Handle auxillary csect + * coff64-rs6000.c (_bfd_xcoff64_swap_aux_in): Handle auxiliary csect information for C_AIX_WEAKEXT too. (_bfd_xcoff64_swap_aux_out): Likewise. (xcoff64_reloc_type_br): Handle defweak symbols too. - * coffgen.c (coff_print_symbol): Handle auxillary function + * coffgen.c (coff_print_symbol): Handle auxiliary function information for C_AIX_WEAKEXT too. * xcofflink.c (_bfd_xcoff_canonicalize_dynamic_symtab): Set BSF_WEAK instead of BSF_GLOBAL if the L_WEAK flag is set. @@ -3942,7 +3942,7 @@ objects in a dynamic link, rather than checking whether csectpp is null. Always allocate debug_index for other objects, and always go through the loop. Update the type of debug_index - after the change above. Read the auxillary csect information + after the change above. Read the auxiliary csect information and use xcoff_keep_symbol_p to decide whether a symbol should be kept. Set its debug_index to -2 if not. (xcoff_link_input_bfd): Update the type of debug_index after diff --git a/bfd/ChangeLog-2014 b/bfd/ChangeLog-2014 index 02b1ef7..d35ff8c 100644 --- a/bfd/ChangeLog-2014 +++ b/bfd/ChangeLog-2014 @@ -621,7 +621,7 @@ PR binutils/17512 * coffgen.c (coff_get_normalized_symtab): Check for an excessive - number of auxillary entries. + number of auxiliary entries. * ieee.c (next_byte): Convert to a function. Return FALSE if the next byte is beyond the end of the buffer. (parse_int): Test the return value of next_byte. diff --git a/bfd/ChangeLog-2015 b/bfd/ChangeLog-2015 index e57cd70..f07b736 100644 --- a/bfd/ChangeLog-2015 +++ b/bfd/ChangeLog-2015 @@ -3076,7 +3076,7 @@ PR binutils/17512 * coffgen.c (coff_get_normalized_symtab): Fix test for out of - range auxillary sections. + range auxiliary sections. 2015-03-24 Marcus Shawcroft <marcus.shawcroft@arm.com> diff --git a/bfd/xcofflink.c b/bfd/xcofflink.c index 4df5ee1..f0d6c8d 100644 --- a/bfd/xcofflink.c +++ b/bfd/xcofflink.c @@ -3408,7 +3408,7 @@ xcoff_post_gc_symbol (struct xcoff_link_hash_entry *h, void * p) } /* INPUT_BFD includes XCOFF symbol ISYM, which is associated with linker - hash table entry H and csect CSECT. AUX contains ISYM's auxillary + hash table entry H and csect CSECT. AUX contains ISYM's auxiliary csect information, if any. NAME is the function's name if the name is stored in the .debug section, otherwise it is null. @@ -5145,7 +5145,7 @@ xcoff_find_tc0 (bfd *output_bfd, struct xcoff_final_link_info *flinfo) irsym.n_numaux = 1; bfd_coff_swap_sym_out (output_bfd, &irsym, flinfo->outsyms); - /* Fill out the auxillary csect information. */ + /* Fill out the auxiliary csect information. */ memset (&iraux, 0, sizeof iraux); iraux.x_csect.x_smtyp = XTY_SD; iraux.x_csect.x_smclas = XMC_TC0; |