X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=bfd%2Fcoffcode.h;h=20829fc89cee7f0bb1ee3942d90efac75b4e723c;hb=4eca02287cf48e60ee89338ddd35f8d0d8257a51;hp=eef3fa8d1da6be75d83be01a56334a5a11239b9b;hpb=4519d071387f374932616b588ddb4ec8cabe2a52;p=deliverable%2Fbinutils-gdb.git diff --git a/bfd/coffcode.h b/bfd/coffcode.h index eef3fa8d1d..20829fc89c 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -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);