mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
2002-10-25 Andrew Cagney <cagney@redhat.com>
* complaints.h (struct deprecated_complaint): Rename `struct complaint'. * complaints.c (complain): Update. * remote-vx68.c, remote-vxmips.c, remote-vxsparc.c: Delete incorrect comment indicating that "symfile.h" was being included for the `struct complaint' definition. * remote-vx.c: Update. * objc-lang.c: Update. * xcoffread.c: Update. * hpread.c: Update. * mdebugread.c: Update. * stabsread.c: Update. * dwarf2read.c: Update. * dwarfread.c: Update. * elfread.c: Update. * coffread.c: Update. * stabsread.h: Update. * dbxread.c: Update. * buildsym.c: Update. * gdbtypes.c: Update. * macrotab.c: Update.
This commit is contained in:
parent
0c1a73d616
commit
72367fb45b
@ -1,3 +1,27 @@
|
||||
2002-10-25 Andrew Cagney <cagney@redhat.com>
|
||||
|
||||
* complaints.h (struct deprecated_complaint): Rename `struct
|
||||
complaint'.
|
||||
* complaints.c (complain): Update.
|
||||
* remote-vx68.c, remote-vxmips.c, remote-vxsparc.c: Delete
|
||||
incorrect comment indicating that "symfile.h" was being included
|
||||
for the `struct complaint' definition.
|
||||
* remote-vx.c: Update.
|
||||
* objc-lang.c: Update.
|
||||
* xcoffread.c: Update.
|
||||
* hpread.c: Update.
|
||||
* mdebugread.c: Update.
|
||||
* stabsread.c: Update.
|
||||
* dwarf2read.c: Update.
|
||||
* dwarfread.c: Update.
|
||||
* elfread.c: Update.
|
||||
* coffread.c: Update.
|
||||
* stabsread.h: Update.
|
||||
* dbxread.c: Update.
|
||||
* buildsym.c: Update.
|
||||
* gdbtypes.c: Update.
|
||||
* macrotab.c: Update.
|
||||
|
||||
2002-10-25 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* x86-64-tdep.c (x86_64_gdbarch_init): Make a bit more similar to
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include "bfd.h"
|
||||
#include "gdb_obstack.h"
|
||||
#include "symtab.h"
|
||||
#include "symfile.h" /* Needed for "struct complaint" */
|
||||
#include "symfile.h"
|
||||
#include "objfiles.h"
|
||||
#include "gdbtypes.h"
|
||||
#include "complaints.h"
|
||||
@ -74,19 +74,19 @@ static int compare_line_numbers (const void *ln1p, const void *ln2p);
|
||||
|
||||
/* Complaints about the symbols we have encountered. */
|
||||
|
||||
struct complaint block_end_complaint =
|
||||
struct deprecated_complaint block_end_complaint =
|
||||
{"block end address less than block start address in %s (patched it)", 0, 0};
|
||||
|
||||
struct complaint anon_block_end_complaint =
|
||||
struct deprecated_complaint anon_block_end_complaint =
|
||||
{"block end address 0x%lx less than block start address 0x%lx (patched it)", 0, 0};
|
||||
|
||||
struct complaint innerblock_complaint =
|
||||
struct deprecated_complaint innerblock_complaint =
|
||||
{"inner block not inside outer block in %s", 0, 0};
|
||||
|
||||
struct complaint innerblock_anon_complaint =
|
||||
struct deprecated_complaint innerblock_anon_complaint =
|
||||
{"inner block (0x%lx-0x%lx) not inside outer block (0x%lx-0x%lx)", 0, 0};
|
||||
|
||||
struct complaint blockvector_complaint =
|
||||
struct deprecated_complaint blockvector_complaint =
|
||||
{"block at %s out of order", 0, 0};
|
||||
|
||||
/* maintain the lists of symbols and blocks */
|
||||
@ -869,7 +869,7 @@ end_symtab (CORE_ADDR end_addr, struct objfile *objfile, int section)
|
||||
same. FIXME: Find out why it is happening. This is not
|
||||
believed to happen in most cases (even for coffread.c);
|
||||
it used to be an abort(). */
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"Context stack not empty in end_symtab", 0, 0};
|
||||
complain (&msg);
|
||||
context_stack_depth = 0;
|
||||
|
@ -124,37 +124,37 @@ static struct symbol *opaque_type_chain[HASHSIZE];
|
||||
|
||||
/* Complaints about various problems in the file being read */
|
||||
|
||||
struct complaint ef_complaint =
|
||||
struct deprecated_complaint ef_complaint =
|
||||
{"Unmatched .ef symbol(s) ignored starting at symnum %d", 0, 0};
|
||||
|
||||
struct complaint ef_stack_complaint =
|
||||
struct deprecated_complaint ef_stack_complaint =
|
||||
{"`.ef' symbol without matching `.bf' symbol ignored starting at symnum %d", 0, 0};
|
||||
|
||||
struct complaint eb_stack_complaint =
|
||||
struct deprecated_complaint eb_stack_complaint =
|
||||
{"`.eb' symbol without matching `.bb' symbol ignored starting at symnum %d", 0, 0};
|
||||
|
||||
struct complaint bf_no_aux_complaint =
|
||||
struct deprecated_complaint bf_no_aux_complaint =
|
||||
{"`.bf' symbol %d has no aux entry", 0, 0};
|
||||
|
||||
struct complaint ef_no_aux_complaint =
|
||||
struct deprecated_complaint ef_no_aux_complaint =
|
||||
{"`.ef' symbol %d has no aux entry", 0, 0};
|
||||
|
||||
struct complaint lineno_complaint =
|
||||
struct deprecated_complaint lineno_complaint =
|
||||
{"Line number pointer %d lower than start of line numbers", 0, 0};
|
||||
|
||||
struct complaint unexpected_type_complaint =
|
||||
struct deprecated_complaint unexpected_type_complaint =
|
||||
{"Unexpected type for symbol %s", 0, 0};
|
||||
|
||||
struct complaint bad_sclass_complaint =
|
||||
struct deprecated_complaint bad_sclass_complaint =
|
||||
{"Bad n_sclass for symbol %s", 0, 0};
|
||||
|
||||
struct complaint misordered_blocks_complaint =
|
||||
struct deprecated_complaint misordered_blocks_complaint =
|
||||
{"Blocks out of order at address %x", 0, 0};
|
||||
|
||||
struct complaint tagndx_bad_complaint =
|
||||
struct deprecated_complaint tagndx_bad_complaint =
|
||||
{"Symbol table entry for %s has bad tagndx value", 0, 0};
|
||||
|
||||
struct complaint eb_complaint =
|
||||
struct deprecated_complaint eb_complaint =
|
||||
{"Mismatched .eb symbol ignored starting at symnum %d", 0, 0};
|
||||
|
||||
/* Simplified internal version of coff symbol table information */
|
||||
|
@ -250,7 +250,7 @@ internal_complaint (struct complaints **complaints, const char *file,
|
||||
}
|
||||
|
||||
void
|
||||
complain (struct complaint *complaint, ...)
|
||||
complain (struct deprecated_complaint *complaint, ...)
|
||||
{
|
||||
va_list args;
|
||||
va_start (args, complaint);
|
||||
|
@ -50,9 +50,15 @@ extern void clear_complaints (struct complaints **complaints,
|
||||
int less_verbose, int noisy);
|
||||
|
||||
|
||||
/* Legacy interfaces to keep the old code working (until it is all
|
||||
converted to the above). While the structure below contains a
|
||||
number of fields, all but .message are ignored.
|
||||
/* Deprecated interfaces to keep the old code working (until it is all
|
||||
converted to the above). Existing code such as:
|
||||
|
||||
struct deprecated_complaint msg = { "msg", 0, 0 };
|
||||
complaint (&msg);
|
||||
|
||||
should be replaced by:
|
||||
|
||||
complaint (&symtab_complaints, __FILE__, __LINE__, "msg");
|
||||
|
||||
Support for complaining about things in the symbol file that aren't
|
||||
catastrophic.
|
||||
@ -61,13 +67,13 @@ extern void clear_complaints (struct complaints **complaints,
|
||||
during a symbol read, we report it. At the end of symbol reading,
|
||||
if verbose, we report how many of each problem we had. */
|
||||
|
||||
struct complaint
|
||||
struct deprecated_complaint
|
||||
{
|
||||
const char *message;
|
||||
unsigned counter_ignored;
|
||||
struct complaint *next_ignored;
|
||||
struct deprecated_complaint *next_ignored;
|
||||
};
|
||||
|
||||
extern void complain (struct complaint *, ...);
|
||||
extern void complain (struct deprecated_complaint *, ...);
|
||||
|
||||
#endif /* !defined (COMPLAINTS_H) */
|
||||
|
@ -167,34 +167,34 @@ static int has_line_numbers;
|
||||
|
||||
/* Complaints about the symbols we have encountered. */
|
||||
|
||||
struct complaint lbrac_complaint =
|
||||
struct deprecated_complaint lbrac_complaint =
|
||||
{"bad block start address patched", 0, 0};
|
||||
|
||||
struct complaint string_table_offset_complaint =
|
||||
struct deprecated_complaint string_table_offset_complaint =
|
||||
{"bad string table offset in symbol %d", 0, 0};
|
||||
|
||||
struct complaint unknown_symtype_complaint =
|
||||
struct deprecated_complaint unknown_symtype_complaint =
|
||||
{"unknown symbol type %s", 0, 0};
|
||||
|
||||
struct complaint unknown_symchar_complaint =
|
||||
struct deprecated_complaint unknown_symchar_complaint =
|
||||
{"unknown symbol descriptor `%c'", 0, 0};
|
||||
|
||||
struct complaint lbrac_rbrac_complaint =
|
||||
struct deprecated_complaint lbrac_rbrac_complaint =
|
||||
{"block start larger than block end", 0, 0};
|
||||
|
||||
struct complaint lbrac_unmatched_complaint =
|
||||
struct deprecated_complaint lbrac_unmatched_complaint =
|
||||
{"unmatched N_LBRAC before symtab pos %d", 0, 0};
|
||||
|
||||
struct complaint lbrac_mismatch_complaint =
|
||||
struct deprecated_complaint lbrac_mismatch_complaint =
|
||||
{"N_LBRAC/N_RBRAC symbol mismatch at symtab pos %d", 0, 0};
|
||||
|
||||
struct complaint repeated_header_complaint =
|
||||
struct deprecated_complaint repeated_header_complaint =
|
||||
{"\"repeated\" header file %s not previously seen, at symtab pos %d", 0, 0};
|
||||
|
||||
struct complaint unclaimed_bincl_complaint =
|
||||
struct deprecated_complaint unclaimed_bincl_complaint =
|
||||
{"N_BINCL %s not in entries for any file, at symtab pos %d", 0, 0};
|
||||
|
||||
struct complaint discarding_local_symbols_complaint =
|
||||
struct deprecated_complaint discarding_local_symbols_complaint =
|
||||
{"misplaced N_LBRAC entry; discarding local symbols which have no enclosing block", 0, 0};
|
||||
|
||||
/* find_text_range --- find start and end of loadable code sections
|
||||
@ -1360,7 +1360,7 @@ read_dbx_symtab (struct objfile *objfile)
|
||||
|
||||
switch (nlist.n_type)
|
||||
{
|
||||
static struct complaint function_outside_compilation_unit = {
|
||||
static struct deprecated_complaint function_outside_compilation_unit = {
|
||||
"function `%s' appears to be defined outside of all compilation units", 0, 0
|
||||
};
|
||||
char *p;
|
||||
|
@ -561,135 +561,135 @@ struct field_info
|
||||
|
||||
/* Various complaints about symbol reading that don't abort the process */
|
||||
|
||||
static struct complaint dwarf2_const_ignored =
|
||||
static struct deprecated_complaint dwarf2_const_ignored =
|
||||
{
|
||||
"type qualifier 'const' ignored", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_volatile_ignored =
|
||||
static struct deprecated_complaint dwarf2_volatile_ignored =
|
||||
{
|
||||
"type qualifier 'volatile' ignored", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_non_const_array_bound_ignored =
|
||||
static struct deprecated_complaint dwarf2_non_const_array_bound_ignored =
|
||||
{
|
||||
"non-constant array bounds form '%s' ignored", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_missing_line_number_section =
|
||||
static struct deprecated_complaint dwarf2_missing_line_number_section =
|
||||
{
|
||||
"missing .debug_line section", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_statement_list_fits_in_line_number_section =
|
||||
static struct deprecated_complaint dwarf2_statement_list_fits_in_line_number_section =
|
||||
{
|
||||
"statement list doesn't fit in .debug_line section", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_mangled_line_number_section =
|
||||
static struct deprecated_complaint dwarf2_mangled_line_number_section =
|
||||
{
|
||||
"mangled .debug_line section", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_unsupported_die_ref_attr =
|
||||
static struct deprecated_complaint dwarf2_unsupported_die_ref_attr =
|
||||
{
|
||||
"unsupported die ref attribute form: '%s'", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_unsupported_stack_op =
|
||||
static struct deprecated_complaint dwarf2_unsupported_stack_op =
|
||||
{
|
||||
"unsupported stack op: '%s'", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_complex_location_expr =
|
||||
static struct deprecated_complaint dwarf2_complex_location_expr =
|
||||
{
|
||||
"location expression too complex", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_unsupported_tag =
|
||||
static struct deprecated_complaint dwarf2_unsupported_tag =
|
||||
{
|
||||
"unsupported tag: '%s'", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_unsupported_at_encoding =
|
||||
static struct deprecated_complaint dwarf2_unsupported_at_encoding =
|
||||
{
|
||||
"unsupported DW_AT_encoding: '%s'", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_unsupported_at_frame_base =
|
||||
static struct deprecated_complaint dwarf2_unsupported_at_frame_base =
|
||||
{
|
||||
"unsupported DW_AT_frame_base for function '%s'", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_unexpected_tag =
|
||||
static struct deprecated_complaint dwarf2_unexpected_tag =
|
||||
{
|
||||
"unexepected tag in read_type_die: '%s'", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_missing_at_frame_base =
|
||||
static struct deprecated_complaint dwarf2_missing_at_frame_base =
|
||||
{
|
||||
"DW_AT_frame_base missing for DW_OP_fbreg", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_bad_static_member_name =
|
||||
static struct deprecated_complaint dwarf2_bad_static_member_name =
|
||||
{
|
||||
"unrecognized static data member name '%s'", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_unsupported_accessibility =
|
||||
static struct deprecated_complaint dwarf2_unsupported_accessibility =
|
||||
{
|
||||
"unsupported accessibility %d", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_bad_member_name_complaint =
|
||||
static struct deprecated_complaint dwarf2_bad_member_name_complaint =
|
||||
{
|
||||
"cannot extract member name from '%s'", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_missing_member_fn_type_complaint =
|
||||
static struct deprecated_complaint dwarf2_missing_member_fn_type_complaint =
|
||||
{
|
||||
"member function type missing for '%s'", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_vtbl_not_found_complaint =
|
||||
static struct deprecated_complaint dwarf2_vtbl_not_found_complaint =
|
||||
{
|
||||
"virtual function table pointer not found when defining class '%s'", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_absolute_sibling_complaint =
|
||||
static struct deprecated_complaint dwarf2_absolute_sibling_complaint =
|
||||
{
|
||||
"ignoring absolute DW_AT_sibling", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_const_value_length_mismatch =
|
||||
static struct deprecated_complaint dwarf2_const_value_length_mismatch =
|
||||
{
|
||||
"const value length mismatch for '%s', got %d, expected %d", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_unsupported_const_value_attr =
|
||||
static struct deprecated_complaint dwarf2_unsupported_const_value_attr =
|
||||
{
|
||||
"unsupported const value attribute form: '%s'", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_misplaced_line_number =
|
||||
static struct deprecated_complaint dwarf2_misplaced_line_number =
|
||||
{
|
||||
"misplaced first line number at 0x%lx for '%s'", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_line_header_too_long =
|
||||
static struct deprecated_complaint dwarf2_line_header_too_long =
|
||||
{
|
||||
"line number info header doesn't fit in `.debug_line' section", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_missing_macinfo_section =
|
||||
static struct deprecated_complaint dwarf2_missing_macinfo_section =
|
||||
{
|
||||
"missing .debug_macinfo section", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_macros_too_long =
|
||||
static struct deprecated_complaint dwarf2_macros_too_long =
|
||||
{
|
||||
"macro info runs off end of `.debug_macinfo' section", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_macros_not_terminated =
|
||||
static struct deprecated_complaint dwarf2_macros_not_terminated =
|
||||
{
|
||||
"no terminating 0-type entry for macros in `.debug_macinfo' section", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_macro_outside_file =
|
||||
static struct deprecated_complaint dwarf2_macro_outside_file =
|
||||
{
|
||||
"debug info gives macro %s outside of any file: %s", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_macro_unmatched_end_file =
|
||||
static struct deprecated_complaint dwarf2_macro_unmatched_end_file =
|
||||
{
|
||||
"macro debug info has an unmatched `close_file' directive", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_macro_malformed_definition =
|
||||
static struct deprecated_complaint dwarf2_macro_malformed_definition =
|
||||
{
|
||||
"macro debug info contains a malformed macro definition:\n`%s'", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_macro_spaces_in_definition =
|
||||
static struct deprecated_complaint dwarf2_macro_spaces_in_definition =
|
||||
{
|
||||
"macro definition contains spaces in formal argument list:\n`%s'", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_invalid_attrib_class =
|
||||
static struct deprecated_complaint dwarf2_invalid_attrib_class =
|
||||
{
|
||||
"invalid attribute class or form for '%s' in '%s'", 0, 0
|
||||
};
|
||||
static struct complaint dwarf2_invalid_pointer_size =
|
||||
static struct deprecated_complaint dwarf2_invalid_pointer_size =
|
||||
{
|
||||
"invalid pointer size %d", 0, 0
|
||||
};
|
||||
|
@ -62,112 +62,112 @@
|
||||
|
||||
/* Complaints that can be issued during DWARF debug info reading. */
|
||||
|
||||
struct complaint no_bfd_get_N =
|
||||
struct deprecated_complaint no_bfd_get_N =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", no bfd support for %d byte data object", 0, 0
|
||||
};
|
||||
|
||||
struct complaint malformed_die =
|
||||
struct deprecated_complaint malformed_die =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", malformed DIE, bad length (%d bytes)", 0, 0
|
||||
};
|
||||
|
||||
struct complaint bad_die_ref =
|
||||
struct deprecated_complaint bad_die_ref =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", reference to DIE (0x%x) outside compilation unit", 0, 0
|
||||
};
|
||||
|
||||
struct complaint unknown_attribute_form =
|
||||
struct deprecated_complaint unknown_attribute_form =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", unknown attribute form (0x%x)", 0, 0
|
||||
};
|
||||
|
||||
struct complaint unknown_attribute_length =
|
||||
struct deprecated_complaint unknown_attribute_length =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", unknown attribute length, skipped remaining attributes", 0, 0
|
||||
};
|
||||
|
||||
struct complaint unexpected_fund_type =
|
||||
struct deprecated_complaint unexpected_fund_type =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", unexpected fundamental type 0x%x", 0, 0
|
||||
};
|
||||
|
||||
struct complaint unknown_type_modifier =
|
||||
struct deprecated_complaint unknown_type_modifier =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", unknown type modifier %u", 0, 0
|
||||
};
|
||||
|
||||
struct complaint volatile_ignored =
|
||||
struct deprecated_complaint volatile_ignored =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", type modifier 'volatile' ignored", 0, 0
|
||||
};
|
||||
|
||||
struct complaint const_ignored =
|
||||
struct deprecated_complaint const_ignored =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", type modifier 'const' ignored", 0, 0
|
||||
};
|
||||
|
||||
struct complaint botched_modified_type =
|
||||
struct deprecated_complaint botched_modified_type =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", botched modified type decoding (mtype 0x%x)", 0, 0
|
||||
};
|
||||
|
||||
struct complaint op_deref2 =
|
||||
struct deprecated_complaint op_deref2 =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", OP_DEREF2 address 0x%x not handled", 0, 0
|
||||
};
|
||||
|
||||
struct complaint op_deref4 =
|
||||
struct deprecated_complaint op_deref4 =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", OP_DEREF4 address 0x%x not handled", 0, 0
|
||||
};
|
||||
|
||||
struct complaint basereg_not_handled =
|
||||
struct deprecated_complaint basereg_not_handled =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", BASEREG %d not handled", 0, 0
|
||||
};
|
||||
|
||||
struct complaint dup_user_type_allocation =
|
||||
struct deprecated_complaint dup_user_type_allocation =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", internal error: duplicate user type allocation", 0, 0
|
||||
};
|
||||
|
||||
struct complaint dup_user_type_definition =
|
||||
struct deprecated_complaint dup_user_type_definition =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", internal error: duplicate user type definition", 0, 0
|
||||
};
|
||||
|
||||
struct complaint missing_tag =
|
||||
struct deprecated_complaint missing_tag =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", missing class, structure, or union tag", 0, 0
|
||||
};
|
||||
|
||||
struct complaint bad_array_element_type =
|
||||
struct deprecated_complaint bad_array_element_type =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", bad array element type attribute 0x%x", 0, 0
|
||||
};
|
||||
|
||||
struct complaint subscript_data_items =
|
||||
struct deprecated_complaint subscript_data_items =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", can't decode subscript data items", 0, 0
|
||||
};
|
||||
|
||||
struct complaint unhandled_array_subscript_format =
|
||||
struct deprecated_complaint unhandled_array_subscript_format =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", array subscript format 0x%x not handled yet", 0, 0
|
||||
};
|
||||
|
||||
struct complaint unknown_array_subscript_format =
|
||||
struct deprecated_complaint unknown_array_subscript_format =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", unknown array subscript format %x", 0, 0
|
||||
};
|
||||
|
||||
struct complaint not_row_major =
|
||||
struct deprecated_complaint not_row_major =
|
||||
{
|
||||
"DIE @ 0x%x \"%s\", array not row major; not handled correctly", 0, 0
|
||||
};
|
||||
|
||||
struct complaint missing_at_name =
|
||||
struct deprecated_complaint missing_at_name =
|
||||
{
|
||||
"DIE @ 0x%x, AT_name tag missing", 0, 0
|
||||
};
|
||||
|
@ -54,16 +54,16 @@ struct elfinfo
|
||||
|
||||
/* Various things we might complain about... */
|
||||
|
||||
struct complaint section_info_complaint =
|
||||
struct deprecated_complaint section_info_complaint =
|
||||
{"elf/stab section information %s without a preceding file symbol", 0, 0};
|
||||
|
||||
struct complaint section_info_dup_complaint =
|
||||
struct deprecated_complaint section_info_dup_complaint =
|
||||
{"duplicated elf/stab section information for %s", 0, 0};
|
||||
|
||||
struct complaint stab_info_mismatch_complaint =
|
||||
struct deprecated_complaint stab_info_mismatch_complaint =
|
||||
{"elf/stab section information missing for %s", 0, 0};
|
||||
|
||||
struct complaint stab_info_questionable_complaint =
|
||||
struct deprecated_complaint stab_info_questionable_complaint =
|
||||
{"elf/stab section information questionable for %s", 0, 0};
|
||||
|
||||
static void free_elfinfo (void *);
|
||||
|
@ -1341,7 +1341,7 @@ get_destructor_fn_field (struct type *t, int *method_indexp, int *field_indexp)
|
||||
This used to be coded as a macro, but I don't think it is called
|
||||
often enough to merit such treatment. */
|
||||
|
||||
struct complaint stub_noname_complaint =
|
||||
struct deprecated_complaint stub_noname_complaint =
|
||||
{"stub type has NULL name", 0, 0};
|
||||
|
||||
struct type *
|
||||
@ -1512,7 +1512,7 @@ add_mangled_type (struct extra *pextras, struct type *t)
|
||||
default:
|
||||
{
|
||||
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"Bad int type code length x%x\n", 0, 0};
|
||||
|
||||
complain (&msg, tlen);
|
||||
@ -1534,7 +1534,7 @@ add_mangled_type (struct extra *pextras, struct type *t)
|
||||
break;
|
||||
default:
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"Bad float type code length x%x\n", 0, 0};
|
||||
complain (&msg, tlen);
|
||||
}
|
||||
@ -1550,7 +1550,7 @@ add_mangled_type (struct extra *pextras, struct type *t)
|
||||
break;
|
||||
case TYPE_CODE_TYPEDEF:
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"Typedefs in overloaded functions not yet supported\n", 0, 0};
|
||||
complain (&msg);
|
||||
}
|
||||
@ -1590,7 +1590,7 @@ add_mangled_type (struct extra *pextras, struct type *t)
|
||||
case TYPE_CODE_ERROR:
|
||||
default:
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"Unknown type code x%x\n", 0, 0};
|
||||
complain (&msg, tcode);
|
||||
}
|
||||
|
24
gdb/hpread.c
24
gdb/hpread.c
@ -129,52 +129,52 @@ struct symloc
|
||||
|
||||
/* FIXME: Shouldn't this stuff be in a .h file somewhere? */
|
||||
/* Complaints about the symbols we have encountered. */
|
||||
extern struct complaint string_table_offset_complaint;
|
||||
extern struct complaint lbrac_unmatched_complaint;
|
||||
extern struct complaint lbrac_mismatch_complaint;
|
||||
extern struct deprecated_complaint string_table_offset_complaint;
|
||||
extern struct deprecated_complaint lbrac_unmatched_complaint;
|
||||
extern struct deprecated_complaint lbrac_mismatch_complaint;
|
||||
|
||||
static struct complaint hpread_unhandled_end_common_complaint =
|
||||
static struct deprecated_complaint hpread_unhandled_end_common_complaint =
|
||||
{
|
||||
"unhandled symbol in hp-symtab-read.c: DNTT_TYPE_COMMON/DNTT_TYPE_END.\n", 0, 0
|
||||
};
|
||||
|
||||
static struct complaint hpread_unhandled_type_complaint =
|
||||
static struct deprecated_complaint hpread_unhandled_type_complaint =
|
||||
{
|
||||
"hpread_type_translate: unhandled type code.", 0, 0
|
||||
};
|
||||
|
||||
static struct complaint hpread_struct_complaint =
|
||||
static struct deprecated_complaint hpread_struct_complaint =
|
||||
{
|
||||
"hpread_read_struct_type: expected SVAR type...", 0, 0
|
||||
};
|
||||
|
||||
static struct complaint hpread_array_complaint =
|
||||
static struct deprecated_complaint hpread_array_complaint =
|
||||
{
|
||||
"error in hpread_array_type.", 0, 0
|
||||
};
|
||||
|
||||
static struct complaint hpread_type_lookup_complaint =
|
||||
static struct deprecated_complaint hpread_type_lookup_complaint =
|
||||
{
|
||||
"error in hpread_type_lookup().", 0, 0
|
||||
};
|
||||
|
||||
|
||||
static struct complaint hpread_unexpected_end_complaint =
|
||||
static struct deprecated_complaint hpread_unexpected_end_complaint =
|
||||
{
|
||||
"internal error in hp-symtab-read.c: Unexpected DNTT_TYPE_END kind.", 0, 0
|
||||
};
|
||||
|
||||
static struct complaint hpread_tagdef_complaint =
|
||||
static struct deprecated_complaint hpread_tagdef_complaint =
|
||||
{
|
||||
"error processing class tagdef", 0, 0
|
||||
};
|
||||
|
||||
static struct complaint hpread_unhandled_common_complaint =
|
||||
static struct deprecated_complaint hpread_unhandled_common_complaint =
|
||||
{
|
||||
"unhandled symbol in hp-symtab-read.c: DNTT_TYPE_COMMON.", 0, 0
|
||||
};
|
||||
|
||||
static struct complaint hpread_unhandled_blockdata_complaint =
|
||||
static struct deprecated_complaint hpread_unhandled_blockdata_complaint =
|
||||
{
|
||||
"unhandled symbol in hp-symtab-read.c: DNTT_TYPE_BLOCKDATA.", 0, 0
|
||||
};
|
||||
|
@ -445,7 +445,7 @@ macro_include (struct macro_source_file *source,
|
||||
should tolerate bad debug info. So:
|
||||
|
||||
First, squawk. */
|
||||
static struct complaint bogus_inclusion_line = {
|
||||
static struct deprecated_complaint bogus_inclusion_line = {
|
||||
"both `%s' and `%s' allegedly #included at %s:%d", 0, 0
|
||||
};
|
||||
|
||||
@ -707,7 +707,7 @@ check_for_redefinition (struct macro_source_file *source, int line,
|
||||
|
||||
if (! same)
|
||||
{
|
||||
static struct complaint macro_redefined = {
|
||||
static struct deprecated_complaint macro_redefined = {
|
||||
"macro `%s' redefined at %s:%d; original definition at %s:%d",
|
||||
0, 0
|
||||
};
|
||||
@ -801,7 +801,7 @@ macro_undef (struct macro_source_file *source, int line,
|
||||
|
||||
if (key->end_file)
|
||||
{
|
||||
static struct complaint double_undef = {
|
||||
static struct deprecated_complaint double_undef = {
|
||||
"macro '%s' is #undefined twice, at %s:%d and %s:%d",
|
||||
0, 0
|
||||
};
|
||||
@ -820,7 +820,7 @@ macro_undef (struct macro_source_file *source, int line,
|
||||
has no macro definition in scope is ignored. So we should
|
||||
ignore it too. */
|
||||
#if 0
|
||||
static struct complaint no_macro_to_undefine = {
|
||||
static struct deprecated_complaint no_macro_to_undefine = {
|
||||
"no definition for macro `%s' in scope to #undef at %s:%d",
|
||||
0, 0
|
||||
};
|
||||
|
@ -143,94 +143,94 @@ struct symloc
|
||||
|
||||
/* Various complaints about symbol reading that don't abort the process */
|
||||
|
||||
static struct complaint bad_file_number_complaint =
|
||||
static struct deprecated_complaint bad_file_number_complaint =
|
||||
{"bad file number %d", 0, 0};
|
||||
|
||||
static struct complaint index_complaint =
|
||||
static struct deprecated_complaint index_complaint =
|
||||
{"bad aux index at symbol %s", 0, 0};
|
||||
|
||||
static struct complaint aux_index_complaint =
|
||||
static struct deprecated_complaint aux_index_complaint =
|
||||
{"bad proc end in aux found from symbol %s", 0, 0};
|
||||
|
||||
static struct complaint block_index_complaint =
|
||||
static struct deprecated_complaint block_index_complaint =
|
||||
{"bad aux index at block symbol %s", 0, 0};
|
||||
|
||||
static struct complaint unknown_ext_complaint =
|
||||
static struct deprecated_complaint unknown_ext_complaint =
|
||||
{"unknown external symbol %s", 0, 0};
|
||||
|
||||
static struct complaint unknown_sym_complaint =
|
||||
static struct deprecated_complaint unknown_sym_complaint =
|
||||
{"unknown local symbol %s", 0, 0};
|
||||
|
||||
static struct complaint unknown_st_complaint =
|
||||
static struct deprecated_complaint unknown_st_complaint =
|
||||
{"with type %d", 0, 0};
|
||||
|
||||
static struct complaint block_overflow_complaint =
|
||||
static struct deprecated_complaint block_overflow_complaint =
|
||||
{"block containing %s overfilled", 0, 0};
|
||||
|
||||
static struct complaint basic_type_complaint =
|
||||
static struct deprecated_complaint basic_type_complaint =
|
||||
{"cannot map ECOFF basic type 0x%x for %s", 0, 0};
|
||||
|
||||
static struct complaint unknown_type_qual_complaint =
|
||||
static struct deprecated_complaint unknown_type_qual_complaint =
|
||||
{"unknown type qualifier 0x%x", 0, 0};
|
||||
|
||||
static struct complaint array_index_type_complaint =
|
||||
static struct deprecated_complaint array_index_type_complaint =
|
||||
{"illegal array index type for %s, assuming int", 0, 0};
|
||||
|
||||
static struct complaint bad_tag_guess_complaint =
|
||||
static struct deprecated_complaint bad_tag_guess_complaint =
|
||||
{"guessed tag type of %s incorrectly", 0, 0};
|
||||
|
||||
static struct complaint block_member_complaint =
|
||||
static struct deprecated_complaint block_member_complaint =
|
||||
{"declaration block contains unhandled symbol type %d", 0, 0};
|
||||
|
||||
static struct complaint stEnd_complaint =
|
||||
static struct deprecated_complaint stEnd_complaint =
|
||||
{"stEnd with storage class %d not handled", 0, 0};
|
||||
|
||||
static struct complaint unknown_mdebug_symtype_complaint =
|
||||
static struct deprecated_complaint unknown_mdebug_symtype_complaint =
|
||||
{"unknown symbol type 0x%x", 0, 0};
|
||||
|
||||
static struct complaint stab_unknown_complaint =
|
||||
static struct deprecated_complaint stab_unknown_complaint =
|
||||
{"unknown stabs symbol %s", 0, 0};
|
||||
|
||||
static struct complaint pdr_for_nonsymbol_complaint =
|
||||
static struct deprecated_complaint pdr_for_nonsymbol_complaint =
|
||||
{"PDR for %s, but no symbol", 0, 0};
|
||||
|
||||
static struct complaint pdr_static_symbol_complaint =
|
||||
static struct deprecated_complaint pdr_static_symbol_complaint =
|
||||
{"can't handle PDR for static proc at 0x%lx", 0, 0};
|
||||
|
||||
static struct complaint bad_setjmp_pdr_complaint =
|
||||
static struct deprecated_complaint bad_setjmp_pdr_complaint =
|
||||
{"fixing bad setjmp PDR from libc", 0, 0};
|
||||
|
||||
static struct complaint bad_fbitfield_complaint =
|
||||
static struct deprecated_complaint bad_fbitfield_complaint =
|
||||
{"can't handle TIR fBitfield for %s", 0, 0};
|
||||
|
||||
static struct complaint bad_continued_complaint =
|
||||
static struct deprecated_complaint bad_continued_complaint =
|
||||
{"illegal TIR continued for %s", 0, 0};
|
||||
|
||||
static struct complaint bad_rfd_entry_complaint =
|
||||
static struct deprecated_complaint bad_rfd_entry_complaint =
|
||||
{"bad rfd entry for %s: file %d, index %d", 0, 0};
|
||||
|
||||
static struct complaint unexpected_type_code_complaint =
|
||||
static struct deprecated_complaint unexpected_type_code_complaint =
|
||||
{"unexpected type code for %s", 0, 0};
|
||||
|
||||
static struct complaint unable_to_cross_ref_complaint =
|
||||
static struct deprecated_complaint unable_to_cross_ref_complaint =
|
||||
{"unable to cross ref btTypedef for %s", 0, 0};
|
||||
|
||||
static struct complaint bad_indirect_xref_complaint =
|
||||
static struct deprecated_complaint bad_indirect_xref_complaint =
|
||||
{"unable to cross ref btIndirect for %s", 0, 0};
|
||||
|
||||
static struct complaint illegal_forward_tq0_complaint =
|
||||
static struct deprecated_complaint illegal_forward_tq0_complaint =
|
||||
{"illegal tq0 in forward typedef for %s", 0, 0};
|
||||
|
||||
static struct complaint illegal_forward_bt_complaint =
|
||||
static struct deprecated_complaint illegal_forward_bt_complaint =
|
||||
{"illegal bt %d in forward typedef for %s", 0, 0};
|
||||
|
||||
static struct complaint bad_linetable_guess_complaint =
|
||||
static struct deprecated_complaint bad_linetable_guess_complaint =
|
||||
{"guessed size of linetable for %s incorrectly", 0, 0};
|
||||
|
||||
static struct complaint bad_ext_ifd_complaint =
|
||||
static struct deprecated_complaint bad_ext_ifd_complaint =
|
||||
{"bad ifd for external symbol: %d (max %d)", 0, 0};
|
||||
|
||||
static struct complaint bad_ext_iss_complaint =
|
||||
static struct deprecated_complaint bad_ext_iss_complaint =
|
||||
{"bad iss for external symbol: %ld (max %ld)", 0, 0};
|
||||
|
||||
/* Macros and extra defs */
|
||||
@ -2720,7 +2720,7 @@ parse_partial_symbols (struct objfile *objfile)
|
||||
|
||||
switch (type_code)
|
||||
{
|
||||
static struct complaint function_outside_compilation_unit = {
|
||||
static struct deprecated_complaint function_outside_compilation_unit = {
|
||||
"function `%s' appears to be defined outside of all compilation units", 0, 0
|
||||
};
|
||||
char *p;
|
||||
|
@ -74,11 +74,11 @@ struct objc_method {
|
||||
|
||||
/* Complaints about ObjC classes, selectors, etc. */
|
||||
|
||||
static struct complaint noclass_lookup_complaint = {
|
||||
static struct deprecated_complaint noclass_lookup_complaint = {
|
||||
"no way to lookup Objective-C classes", 0, 0
|
||||
};
|
||||
|
||||
static struct complaint nosel_lookup_complaint = {
|
||||
static struct deprecated_complaint nosel_lookup_complaint = {
|
||||
"no way to lookup Objective-C selectors", 0, 0
|
||||
};
|
||||
|
||||
|
@ -820,7 +820,7 @@ net_get_symbols (ldtabl *pLoadTable)
|
||||
Returns status of symbol read on target side (0=success, -1=fail)
|
||||
Returns -1 and complain()s if rpc fails. */
|
||||
|
||||
struct complaint cant_contact_target =
|
||||
struct deprecated_complaint cant_contact_target =
|
||||
{"Lost contact with VxWorks target", 0, 0};
|
||||
|
||||
static int
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include "gdbcore.h"
|
||||
#include "command.h"
|
||||
#include "symtab.h"
|
||||
#include "symfile.h" /* for struct complaint */
|
||||
#include "symfile.h"
|
||||
#include "regcache.h"
|
||||
|
||||
#include "gdb_string.h"
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include "gdbcore.h"
|
||||
#include "command.h"
|
||||
#include "symtab.h"
|
||||
#include "symfile.h" /* for struct complaint */
|
||||
#include "symfile.h"
|
||||
#include "regcache.h"
|
||||
|
||||
#include "gdb_string.h"
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include "gdbcore.h"
|
||||
#include "command.h"
|
||||
#include "symtab.h"
|
||||
#include "symfile.h" /* for struct complaint */
|
||||
#include "symfile.h"
|
||||
#include "regcache.h"
|
||||
|
||||
#include "gdb_string.h"
|
||||
|
@ -202,46 +202,46 @@ static const char vb_name[] = "_vb$";
|
||||
#define BELIEVE_PCC_PROMOTION_TYPE 0
|
||||
#endif
|
||||
|
||||
static struct complaint invalid_cpp_abbrev_complaint =
|
||||
static struct deprecated_complaint invalid_cpp_abbrev_complaint =
|
||||
{"invalid C++ abbreviation `%s'", 0, 0};
|
||||
|
||||
static struct complaint invalid_cpp_type_complaint =
|
||||
static struct deprecated_complaint invalid_cpp_type_complaint =
|
||||
{"C++ abbreviated type name unknown at symtab pos %d", 0, 0};
|
||||
|
||||
static struct complaint member_fn_complaint =
|
||||
static struct deprecated_complaint member_fn_complaint =
|
||||
{"member function type missing, got '%c'", 0, 0};
|
||||
|
||||
static struct complaint const_vol_complaint =
|
||||
static struct deprecated_complaint const_vol_complaint =
|
||||
{"const/volatile indicator missing, got '%c'", 0, 0};
|
||||
|
||||
static struct complaint error_type_complaint =
|
||||
static struct deprecated_complaint error_type_complaint =
|
||||
{"couldn't parse type; debugger out of date?", 0, 0};
|
||||
|
||||
static struct complaint invalid_member_complaint =
|
||||
static struct deprecated_complaint invalid_member_complaint =
|
||||
{"invalid (minimal) member type data format at symtab pos %d.", 0, 0};
|
||||
|
||||
static struct complaint range_type_base_complaint =
|
||||
static struct deprecated_complaint range_type_base_complaint =
|
||||
{"base type %d of range type is not defined", 0, 0};
|
||||
|
||||
static struct complaint reg_value_complaint =
|
||||
static struct deprecated_complaint reg_value_complaint =
|
||||
{"register number %d too large (max %d) in symbol %s", 0, 0};
|
||||
|
||||
static struct complaint vtbl_notfound_complaint =
|
||||
static struct deprecated_complaint vtbl_notfound_complaint =
|
||||
{"virtual function table pointer not found when defining class `%s'", 0, 0};
|
||||
|
||||
static struct complaint unrecognized_cplus_name_complaint =
|
||||
static struct deprecated_complaint unrecognized_cplus_name_complaint =
|
||||
{"Unknown C++ symbol name `%s'", 0, 0};
|
||||
|
||||
static struct complaint rs6000_builtin_complaint =
|
||||
static struct deprecated_complaint rs6000_builtin_complaint =
|
||||
{"Unknown builtin type %d", 0, 0};
|
||||
|
||||
static struct complaint unresolved_sym_chain_complaint =
|
||||
static struct deprecated_complaint unresolved_sym_chain_complaint =
|
||||
{"%s: common block `%s' from global_sym_chain unresolved", 0, 0};
|
||||
|
||||
static struct complaint stabs_general_complaint =
|
||||
static struct deprecated_complaint stabs_general_complaint =
|
||||
{"%s", 0, 0};
|
||||
|
||||
static struct complaint lrs_general_complaint =
|
||||
static struct deprecated_complaint lrs_general_complaint =
|
||||
{"%s", 0, 0};
|
||||
|
||||
/* Make a list of forward references which haven't been defined. */
|
||||
@ -311,7 +311,7 @@ dbx_lookup_type (int typenums[2])
|
||||
|
||||
if (filenum < 0 || filenum >= n_this_object_header_files)
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"\
|
||||
Invalid symbol data: type number (%d,%d) out of range at symtab pos %d.",
|
||||
0, 0};
|
||||
@ -618,11 +618,11 @@ static int
|
||||
read_cfront_baseclasses (struct field_info *fip, char **pp, struct type *type,
|
||||
struct objfile *objfile)
|
||||
{
|
||||
static struct complaint msg_unknown =
|
||||
static struct deprecated_complaint msg_unknown =
|
||||
{"\
|
||||
Unsupported token in stabs string %s.\n",
|
||||
0, 0};
|
||||
static struct complaint msg_notfound =
|
||||
static struct deprecated_complaint msg_notfound =
|
||||
{"\
|
||||
Unable to find base type for %s.\n",
|
||||
0, 0};
|
||||
@ -692,7 +692,7 @@ read_cfront_baseclasses (struct field_info *fip, char **pp, struct type *type,
|
||||
/* Bad visibility format. Complain and treat it as
|
||||
public. */
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{
|
||||
"Unknown visibility `%c' for baseclass", 0, 0};
|
||||
complain (&msg, new->visibility);
|
||||
@ -810,7 +810,7 @@ read_cfront_member_functions (struct field_info *fip, char **pp,
|
||||
ref_func = lookup_symbol (fname, 0, VAR_NAMESPACE, 0, 0); /* demangled name */
|
||||
if (!ref_func)
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"\
|
||||
Unable to find function symbol for %s\n",
|
||||
0, 0};
|
||||
@ -2435,7 +2435,7 @@ again:
|
||||
{
|
||||
/* Complain and keep going, so compilers can invent new
|
||||
cross-reference types. */
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"Unrecognized cross-reference type `%c'", 0, 0};
|
||||
complain (&msg, (*pp)[0]);
|
||||
code = TYPE_CODE_STRUCT;
|
||||
@ -2660,7 +2660,7 @@ again:
|
||||
++*pp;
|
||||
else
|
||||
{
|
||||
static struct complaint msg = {
|
||||
static struct deprecated_complaint msg = {
|
||||
"Prototyped function type didn't end arguments with `#':\n%s",
|
||||
0, 0
|
||||
};
|
||||
@ -4018,7 +4018,7 @@ read_baseclasses (struct field_info *fip, char **pp, struct type *type,
|
||||
default:
|
||||
/* Unknown character. Complain and treat it as non-virtual. */
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{
|
||||
"Unknown virtual character `%c' for baseclass", 0, 0};
|
||||
complain (&msg, **pp);
|
||||
@ -4037,7 +4037,7 @@ read_baseclasses (struct field_info *fip, char **pp, struct type *type,
|
||||
/* Bad visibility format. Complain and treat it as
|
||||
public. */
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{
|
||||
"Unknown visibility `%c' for baseclass", 0, 0
|
||||
};
|
||||
@ -4210,7 +4210,7 @@ read_cfront_static_fields (struct field_info *fip, char **pp, struct type *type,
|
||||
ref_static = lookup_symbol (sname, 0, VAR_NAMESPACE, 0, 0); /*demangled_name */
|
||||
if (!ref_static)
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"\
|
||||
Unable to find symbol for static data field %s\n",
|
||||
0, 0};
|
||||
@ -4389,7 +4389,7 @@ attach_fields_to_type (struct field_info *fip, register struct type *type,
|
||||
default:
|
||||
/* Unknown visibility. Complain and treat it as public. */
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{
|
||||
"Unknown visibility `%c' for field", 0, 0};
|
||||
complain (&msg, fip->list->visibility);
|
||||
@ -4402,7 +4402,7 @@ attach_fields_to_type (struct field_info *fip, register struct type *type,
|
||||
}
|
||||
|
||||
|
||||
static struct complaint multiply_defined_struct =
|
||||
static struct deprecated_complaint multiply_defined_struct =
|
||||
{"struct/union type gets multiply defined: %s%s", 0, 0};
|
||||
|
||||
|
||||
@ -5214,7 +5214,7 @@ common_block_start (char *name, struct objfile *objfile)
|
||||
{
|
||||
if (common_block_name != NULL)
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{
|
||||
"Invalid symbol data: common block within common block",
|
||||
0, 0};
|
||||
@ -5244,7 +5244,7 @@ common_block_end (struct objfile *objfile)
|
||||
|
||||
if (common_block_name == NULL)
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"ECOMM symbol unmatched by BCOMM", 0, 0};
|
||||
complain (&msg);
|
||||
return;
|
||||
@ -5359,7 +5359,7 @@ cleanup_undefined_types (void)
|
||||
|
||||
if (typename == NULL)
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"need a type name", 0, 0};
|
||||
complain (&msg);
|
||||
break;
|
||||
@ -5384,7 +5384,7 @@ cleanup_undefined_types (void)
|
||||
|
||||
default:
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"\
|
||||
GDB internal error. cleanup_undefined_types with bad type %d.", 0, 0};
|
||||
complain (&msg, TYPE_CODE (*type));
|
||||
|
@ -128,8 +128,8 @@ EXTERN int n_this_object_header_files;
|
||||
|
||||
EXTERN int n_allocated_this_object_header_files;
|
||||
|
||||
extern struct complaint unknown_symtype_complaint;
|
||||
extern struct complaint unknown_symchar_complaint;
|
||||
extern struct deprecated_complaint unknown_symtype_complaint;
|
||||
extern struct deprecated_complaint unknown_symchar_complaint;
|
||||
|
||||
extern struct type *read_type (char **, struct objfile *);
|
||||
|
||||
|
@ -150,16 +150,16 @@ struct coff_symfile_info
|
||||
CORE_ADDR toc_offset;
|
||||
};
|
||||
|
||||
static struct complaint storclass_complaint =
|
||||
static struct deprecated_complaint storclass_complaint =
|
||||
{"Unexpected storage class: %d", 0, 0};
|
||||
|
||||
static struct complaint bf_notfound_complaint =
|
||||
static struct deprecated_complaint bf_notfound_complaint =
|
||||
{"line numbers off, `.bf' symbol not found", 0, 0};
|
||||
|
||||
static struct complaint ef_complaint =
|
||||
static struct deprecated_complaint ef_complaint =
|
||||
{"Mismatched .ef symbol ignored starting at symnum %d", 0, 0};
|
||||
|
||||
static struct complaint eb_complaint =
|
||||
static struct deprecated_complaint eb_complaint =
|
||||
{"Mismatched .eb symbol ignored starting at symnum %d", 0, 0};
|
||||
|
||||
static void xcoff_initial_scan (struct objfile *, int);
|
||||
@ -483,7 +483,7 @@ record_include_begin (struct coff_symbol *cs)
|
||||
/* This can happen with old versions of GCC.
|
||||
GCC 2.3.3-930426 does not exhibit this on a test case which
|
||||
a user said produced the message for him. */
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"Nested C_BINCL symbols", 0, 0};
|
||||
complain (&msg);
|
||||
}
|
||||
@ -502,7 +502,7 @@ record_include_end (struct coff_symbol *cs)
|
||||
|
||||
if (inclDepth == 0)
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"Mismatched C_BINCL/C_EINCL pair", 0, 0};
|
||||
complain (&msg);
|
||||
}
|
||||
@ -766,7 +766,7 @@ enter_line_range (struct subfile *subfile, unsigned beginoffset, unsigned endoff
|
||||
{
|
||||
if (endoffset >= limit_offset)
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"Bad line table offset in C_EINCL directive", 0, 0};
|
||||
complain (&msg);
|
||||
return;
|
||||
@ -864,7 +864,7 @@ static char *
|
||||
xcoff_next_symbol_text (struct objfile *objfile)
|
||||
{
|
||||
struct internal_syment symbol;
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"Unexpected symbol continuation", 0, 0};
|
||||
char *retval;
|
||||
/* FIXME: is this the same as the passed arg? */
|
||||
@ -1332,7 +1332,7 @@ read_xcoff_symtab (struct partial_symtab *pst)
|
||||
case C_UNTAG:
|
||||
case C_ENTAG:
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"Unrecognized storage class %d.", 0, 0};
|
||||
complain (&msg, cs->c_sclass);
|
||||
}
|
||||
@ -1603,7 +1603,7 @@ read_symbol (struct internal_syment *symbol, int symno)
|
||||
->symtbl;
|
||||
if (symno < 0 || symno >= nsyms)
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"Invalid symbol offset", 0, 0};
|
||||
complain (&msg);
|
||||
symbol->n_value = 0;
|
||||
@ -2442,7 +2442,7 @@ scan_xcoff_symtab (struct objfile *objfile)
|
||||
|
||||
default:
|
||||
{
|
||||
static struct complaint msg =
|
||||
static struct deprecated_complaint msg =
|
||||
{"Storage class %d not recognized during scan", 0, 0};
|
||||
complain (&msg, sclass);
|
||||
}
|
||||
@ -2565,7 +2565,7 @@ scan_xcoff_symtab (struct objfile *objfile)
|
||||
case C_STSYM:
|
||||
{
|
||||
|
||||
static struct complaint function_outside_compilation_unit = {
|
||||
static struct deprecated_complaint function_outside_compilation_unit = {
|
||||
"function `%s' appears to be defined outside of all compilation units", 0, 0
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user