mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
Remove syntactic sugar
Now that _bfd_error_handler is not a function pointer. * aout-adobe.c: Replace (*_bfd_error_handler) (...) with _bfd_error_handler (...) throughout. * aout-cris.c, * aoutx.h, * archive.c, * bfd.c, * binary.c, * cache.c, * coff-alpha.c, * coff-arm.c, * coff-h8300.c, * coff-i860.c, * coff-mcore.c, * coff-ppc.c, * coff-rs6000.c, * coff-sh.c, * coff-tic4x.c, * coff-tic54x.c, * coff-tic80.c, * coff64-rs6000.c, * coffcode.h, * coffgen.c, * cofflink.c, * coffswap.h, * cpu-arm.c, * cpu-m68k.c, * cpu-sh.c, * dwarf2.c, * ecoff.c, * elf-eh-frame.c, * elf-m10300.c, * elf.c, * elf32-arc.c, * elf32-arm.c, * elf32-avr.c, * elf32-bfin.c, * elf32-cr16.c, * elf32-cris.c, * elf32-crx.c, * elf32-dlx.c, * elf32-frv.c, * elf32-hppa.c, * elf32-i370.c, * elf32-i386.c, * elf32-lm32.c, * elf32-m32c.c, * elf32-m32r.c, * elf32-m68hc1x.c, * elf32-m68k.c, * elf32-mcore.c, * elf32-mep.c, * elf32-metag.c, * elf32-microblaze.c, * elf32-mips.c, * elf32-nds32.c, * elf32-nios2.c, * elf32-or1k.c, * elf32-pj.c, * elf32-ppc.c, * elf32-rl78.c, * elf32-s390.c, * elf32-score.c, * elf32-score7.c, * elf32-sh.c, * elf32-sh64.c, * elf32-sparc.c, * elf32-spu.c, * elf32-tic6x.c, * elf32-tilepro.c, * elf32-v850.c, * elf32-vax.c, * elf32-xtensa.c, * elf64-alpha.c, * elf64-hppa.c, * elf64-ia64-vms.c, * elf64-mips.c, * elf64-mmix.c, * elf64-ppc.c, * elf64-s390.c, * elf64-sh64.c, * elf64-sparc.c, * elf64-x86-64.c, * elfcode.h, * elfcore.h, * elflink.c, * elfn32-mips.c, * elfnn-aarch64.c, * elfnn-ia64.c, * elfxx-mips.c, * elfxx-sparc.c, * elfxx-tilegx.c, * hpux-core.c, * i386linux.c, * ieee.c, * ihex.c, * libbfd.c, * linker.c, * m68klinux.c, * mach-o.c, * merge.c, * mmo.c, * oasys.c, * osf-core.c, * pdp11.c, * pe-mips.c, * peXXigen.c, * pef.c, * plugin.c, * reloc.c, * rs6000-core.c, * sco5-core.c, * som.c, * sparclinux.c, * srec.c, * stabs.c, * syms.c, * vms-alpha.c, * vms-lib.c, * vms-misc.c, * xcofflink.c: Likewise.
This commit is contained in:
@@ -1302,7 +1302,7 @@ styp_to_sec_flags (bfd *abfd,
|
||||
/* If the section flag was not handled, report it here. */
|
||||
if (unhandled != NULL)
|
||||
{
|
||||
(*_bfd_error_handler)
|
||||
_bfd_error_handler
|
||||
(_("%B (%s): Section flag %s (0x%x) ignored"),
|
||||
abfd, name, unhandled, flag);
|
||||
result = FALSE;
|
||||
@@ -1937,7 +1937,7 @@ coff_set_alignment_hook (bfd * abfd ATTRIBUTE_UNUSED,
|
||||
section->rel_filepos += relsz;
|
||||
}
|
||||
else if (hdr->s_nreloc == 0xffff)
|
||||
(*_bfd_error_handler)
|
||||
_bfd_error_handler
|
||||
("%s: warning: claims to have 0xffff relocs, without overflow",
|
||||
bfd_get_filename (abfd));
|
||||
}
|
||||
@@ -2453,7 +2453,7 @@ coff_set_arch_mach_hook (bfd *abfd, void * filehdr)
|
||||
#endif
|
||||
default:
|
||||
arch = bfd_arch_obscure;
|
||||
(*_bfd_error_handler)
|
||||
_bfd_error_handler
|
||||
(_("Unrecognized TI COFF target id '0x%x'"),
|
||||
internal_f->f_target_id);
|
||||
break;
|
||||
@@ -3179,7 +3179,7 @@ coff_compute_section_file_positions (bfd * abfd)
|
||||
if (page_size < 0)
|
||||
{
|
||||
bfd_set_error (bfd_error_file_too_big);
|
||||
(*_bfd_error_handler)
|
||||
_bfd_error_handler
|
||||
(_("%B: page size is too large (0x%x)"), abfd, page_size);
|
||||
return FALSE;
|
||||
}
|
||||
@@ -3338,7 +3338,7 @@ coff_compute_section_file_positions (bfd * abfd)
|
||||
if (target_index >= bfd_coff_max_nscns (abfd))
|
||||
{
|
||||
bfd_set_error (bfd_error_file_too_big);
|
||||
(*_bfd_error_handler)
|
||||
_bfd_error_handler
|
||||
(_("%B: too many sections (%d)"), abfd, target_index);
|
||||
return FALSE;
|
||||
}
|
||||
@@ -3756,7 +3756,7 @@ coff_write_object_contents (bfd * abfd)
|
||||
if (string_size >= 10000000)
|
||||
{
|
||||
bfd_set_error (bfd_error_file_too_big);
|
||||
(*_bfd_error_handler)
|
||||
_bfd_error_handler
|
||||
(_("%B: section %s: string table overflow at offset %ld"),
|
||||
abfd, current->name, string_size);
|
||||
return FALSE;
|
||||
@@ -4573,7 +4573,7 @@ coff_slurp_line_table (bfd *abfd, asection *asect)
|
||||
native_lineno = (LINENO *) buy_and_read (abfd, asect->line_filepos, amt);
|
||||
if (native_lineno == NULL)
|
||||
{
|
||||
(*_bfd_error_handler)
|
||||
_bfd_error_handler
|
||||
(_("%B: warning: line number table read failed"), abfd);
|
||||
bfd_release (abfd, lineno_cache);
|
||||
return FALSE;
|
||||
@@ -4606,7 +4606,7 @@ coff_slurp_line_table (bfd *abfd, asection *asect)
|
||||
symndx = dst.l_addr.l_symndx;
|
||||
if (symndx >= obj_raw_syment_count (abfd))
|
||||
{
|
||||
(*_bfd_error_handler)
|
||||
_bfd_error_handler
|
||||
(_("%B: warning: illegal symbol index 0x%lx in line number entry %d"),
|
||||
abfd, (long) symndx, counter);
|
||||
cache_ptr->line_number = -1;
|
||||
@@ -4619,7 +4619,7 @@ coff_slurp_line_table (bfd *abfd, asection *asect)
|
||||
pointers like this. */
|
||||
if (! ent->is_sym)
|
||||
{
|
||||
(*_bfd_error_handler)
|
||||
_bfd_error_handler
|
||||
(_("%B: warning: illegal symbol index 0x%lx in line number entry %d"),
|
||||
abfd, (long) symndx, counter);
|
||||
cache_ptr->line_number = -1;
|
||||
@@ -4632,7 +4632,7 @@ coff_slurp_line_table (bfd *abfd, asection *asect)
|
||||
if (sym < obj_symbols (abfd)
|
||||
|| sym >= obj_symbols (abfd) + bfd_get_symcount (abfd))
|
||||
{
|
||||
(*_bfd_error_handler)
|
||||
_bfd_error_handler
|
||||
(_("%B: warning: illegal symbol in line number entry %d"),
|
||||
abfd, counter);
|
||||
cache_ptr->line_number = -1;
|
||||
@@ -4644,7 +4644,7 @@ coff_slurp_line_table (bfd *abfd, asection *asect)
|
||||
nbr_func++;
|
||||
cache_ptr->u.sym = (asymbol *) sym;
|
||||
if (sym->lineno != NULL)
|
||||
(*_bfd_error_handler)
|
||||
_bfd_error_handler
|
||||
(_("%B: warning: duplicate line number information for `%s'"),
|
||||
abfd, bfd_asymbol_name (&sym->symbol));
|
||||
|
||||
@@ -5056,7 +5056,7 @@ coff_slurp_symbol_table (bfd * abfd)
|
||||
case C_UEXT: /* Tentative external definition. */
|
||||
#endif
|
||||
default:
|
||||
(*_bfd_error_handler)
|
||||
_bfd_error_handler
|
||||
(_("%B: Unrecognized storage class %d for %s symbol `%s'"),
|
||||
abfd, src->u.syment.n_sclass,
|
||||
dst->symbol.section->name, dst->symbol.name);
|
||||
@@ -5186,7 +5186,7 @@ coff_classify_symbol (bfd *abfd,
|
||||
{
|
||||
char buf[SYMNMLEN + 1];
|
||||
|
||||
(*_bfd_error_handler)
|
||||
_bfd_error_handler
|
||||
(_("warning: %B: local symbol `%s' has no section"),
|
||||
abfd, _bfd_coff_internal_syment_name (abfd, syment, buf));
|
||||
}
|
||||
@@ -5292,7 +5292,7 @@ coff_slurp_reloc_table (bfd * abfd, sec_ptr asect, asymbol ** symbols)
|
||||
{
|
||||
if (dst.r_symndx < 0 || dst.r_symndx >= obj_conv_table_size (abfd))
|
||||
{
|
||||
(*_bfd_error_handler)
|
||||
_bfd_error_handler
|
||||
(_("%B: warning: illegal symbol index %ld in relocs"),
|
||||
abfd, (long) dst.r_symndx);
|
||||
cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
|
||||
@@ -5331,7 +5331,7 @@ coff_slurp_reloc_table (bfd * abfd, sec_ptr asect, asymbol ** symbols)
|
||||
|
||||
if (cache_ptr->howto == NULL)
|
||||
{
|
||||
(*_bfd_error_handler)
|
||||
_bfd_error_handler
|
||||
(_("%B: illegal relocation type %d at address 0x%lx"),
|
||||
abfd, dst.r_type, (long) dst.r_vaddr);
|
||||
bfd_set_error (bfd_error_bad_value);
|
||||
|
||||
Reference in New Issue
Block a user