mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-14 12:28:37 +08:00
* symfile.c (compare_psymbols, compare_symbols): Declare using
PTR, as in the definition. * minsyms.c (compare_minimal_symbols): Likewise. * coffread.c (find_targ_sec): Likewise. * elfread.c (free_elfinfo, elf_locate_sections): Likewise. * mipsread.c (alphacoff_locate_sections): Likewise. * mdebugread.c (compare_blocks): Likewise.
This commit is contained in:
@ -2,6 +2,11 @@
|
|||||||
|
|
||||||
* symfile.c (compare_psymbols, compare_symbols): Declare using
|
* symfile.c (compare_psymbols, compare_symbols): Declare using
|
||||||
PTR, as in the definition.
|
PTR, as in the definition.
|
||||||
|
* minsyms.c (compare_minimal_symbols): Likewise.
|
||||||
|
* coffread.c (find_targ_sec): Likewise.
|
||||||
|
* elfread.c (free_elfinfo, elf_locate_sections): Likewise.
|
||||||
|
* mipsread.c (alphacoff_locate_sections): Likewise.
|
||||||
|
* mdebugread.c (compare_blocks): Likewise.
|
||||||
|
|
||||||
2001-05-25 Nick Duffek <nsd@redhat.com>
|
2001-05-25 Nick Duffek <nsd@redhat.com>
|
||||||
|
|
||||||
|
@ -312,7 +312,7 @@ struct find_targ_sec_arg
|
|||||||
asection **resultp;
|
asection **resultp;
|
||||||
};
|
};
|
||||||
|
|
||||||
static void find_targ_sec (bfd *, asection *, void *);
|
static void find_targ_sec (bfd *, asection *, PTR);
|
||||||
|
|
||||||
static void
|
static void
|
||||||
find_targ_sec (bfd *abfd, asection *sect, PTR obj)
|
find_targ_sec (bfd *abfd, asection *sect, PTR obj)
|
||||||
|
@ -76,7 +76,7 @@ static void elf_symfile_finish (struct objfile *);
|
|||||||
|
|
||||||
static void elf_symtab_read (struct objfile *, int);
|
static void elf_symtab_read (struct objfile *, int);
|
||||||
|
|
||||||
static void free_elfinfo (void *);
|
static void free_elfinfo (PTR);
|
||||||
|
|
||||||
static struct minimal_symbol *record_minimal_symbol_and_info (char *,
|
static struct minimal_symbol *record_minimal_symbol_and_info (char *,
|
||||||
CORE_ADDR,
|
CORE_ADDR,
|
||||||
@ -88,7 +88,7 @@ static struct minimal_symbol *record_minimal_symbol_and_info (char *,
|
|||||||
struct objfile
|
struct objfile
|
||||||
*);
|
*);
|
||||||
|
|
||||||
static void elf_locate_sections (bfd *, asection *, void *);
|
static void elf_locate_sections (bfd *, asection *, PTR);
|
||||||
|
|
||||||
/* We are called once per section from elf_symfile_read. We
|
/* We are called once per section from elf_symfile_read. We
|
||||||
need to examine each section we are passed, check to see
|
need to examine each section we are passed, check to see
|
||||||
|
@ -378,7 +378,7 @@ static PTR xzalloc (unsigned int);
|
|||||||
|
|
||||||
static void sort_blocks (struct symtab *);
|
static void sort_blocks (struct symtab *);
|
||||||
|
|
||||||
static int compare_blocks (const void *, const void *);
|
static int compare_blocks (const PTR, const PTR);
|
||||||
|
|
||||||
static struct partial_symtab *new_psymtab (char *, struct objfile *);
|
static struct partial_symtab *new_psymtab (char *, struct objfile *);
|
||||||
|
|
||||||
|
@ -77,7 +77,7 @@ static int msym_count;
|
|||||||
|
|
||||||
/* Prototypes for local functions. */
|
/* Prototypes for local functions. */
|
||||||
|
|
||||||
static int compare_minimal_symbols (const void *, const void *);
|
static int compare_minimal_symbols (const PTR, const PTR);
|
||||||
|
|
||||||
static int
|
static int
|
||||||
compact_minimal_symbols (struct minimal_symbol *, int, struct objfile *);
|
compact_minimal_symbols (struct minimal_symbol *, int, struct objfile *);
|
||||||
|
@ -185,7 +185,7 @@ struct alphacoff_dynsecinfo
|
|||||||
asection *got_sect; /* Section pointer for .got section */
|
asection *got_sect; /* Section pointer for .got section */
|
||||||
};
|
};
|
||||||
|
|
||||||
static void alphacoff_locate_sections (bfd *, asection *, void *);
|
static void alphacoff_locate_sections (bfd *, asection *, PTR);
|
||||||
|
|
||||||
/* We are called once per section from read_alphacoff_dynamic_symtab.
|
/* We are called once per section from read_alphacoff_dynamic_symtab.
|
||||||
We need to examine each section we are passed, check to see
|
We need to examine each section we are passed, check to see
|
||||||
|
Reference in New Issue
Block a user