forked from Imagelibrary/binutils-gdb
Updated soruces in bfd/* to compile cleanly with -Wc++-compat.
* bfd/aoutx.h: Add casts.
* bfd/archive.c: Add casts.
* bfd/archive64.c: Add casts.
* bfd/archures.c: Add casts.
* bfd/bfd-in2.h: Regenerated.
* bfd/bfd.c: Add casts. (enum bfd_direction): Move out to top
level.
* bfd/bfdio.c: Add casts.
* bfd/binary.c: Add casts.
* bfd/cache.c (cache_bseek,cache_bread_1,cache_bwrite): Updated
parameter to use enum value instead of int.
* bfd/coffcode.h: Add casts.
* bfd/coffgen.c: Add casts.
* bfd/cofflink.c: Add casts.
* bfd/compress.c: Add casts.
* bfd/dwarf1.c: Add casts.
* bfd/dwarf2.c: Add casts. (struct dwarf2_debug): Rename member
bfd to bfd_ptr. Update code to use new name.
* bfd/elf-attrs.c: Add casts.
* bfd/elf-bfd.h (elf_link_virtual_table_entry): Gives name to
anonymous struct. (union gotplt_union, struct
elf_link_virtual_table_entry): Move to top level.
* bfd/elf-eh-frame.c: Add casts.
* bfd/elf-strtab.c: Add casts.
* bfd/elf.c: Add casts. (_bfd_elm_make_Section_from_phdr): Change
argument name from typename to type_name.
* bfd/elf32-i386.c: Add casts.
* bfd/elf64-x86-64.c: Add casts.
* bfd/elfcode.h: Add casts.
* bfd/elfcore.h: Add casts.
* bfd/elflink.c: Add casts.
* bfd/format.c: Add casts.
* bfd/hash.c: Add casts.
* bfd/ihex.c: Add casts.
* bfd/libaout.h (enum aout_subformat, enum aout_magic): Move to
top level.
* bfd/libbfd.c: Add casts.
* bfd/linker.c: Add casts.
* bfd/merge.c: Add casts.
* bfd/opncls.c: Add casts.
* bfd/peXXigen.c: Add casts.
* bfd/peicode.h: Add casts.
* bfd/reloc.c: Add casts.
* bfd/section.c: Add casts.
* bfd/simple.c: Add casts.
* bfd/srec.c: Add casts.
* bfd/stabs.c: Add casts.
* bfd/syms.c: Add casts.
* bfd/targets.c: Add casts.
* bfd/tekhex.c: Add casts.
* bfd/verilog.c: Add casts.
* include/bfdlink.h (struct bfd_link_hash_common_entry): Move to
top level.
This commit is contained in:
22
bfd/syms.c
22
bfd/syms.c
@@ -474,7 +474,7 @@ DESCRIPTION
|
||||
void
|
||||
bfd_print_symbol_vandf (bfd *abfd, void *arg, asymbol *symbol)
|
||||
{
|
||||
FILE *file = arg;
|
||||
FILE *file = (FILE *) arg;
|
||||
|
||||
flagword type = symbol->flags;
|
||||
|
||||
@@ -811,7 +811,7 @@ _bfd_generic_read_minisymbols (bfd *abfd,
|
||||
if (storage == 0)
|
||||
return 0;
|
||||
|
||||
syms = bfd_malloc (storage);
|
||||
syms = (asymbol **) bfd_malloc (storage);
|
||||
if (syms == NULL)
|
||||
goto error_return;
|
||||
|
||||
@@ -878,8 +878,8 @@ struct indexentry
|
||||
static int
|
||||
cmpindexentry (const void *a, const void *b)
|
||||
{
|
||||
const struct indexentry *contestantA = a;
|
||||
const struct indexentry *contestantB = b;
|
||||
const struct indexentry *contestantA = (const struct indexentry *) a;
|
||||
const struct indexentry *contestantB = (const struct indexentry *) b;
|
||||
|
||||
if (contestantA->val < contestantB->val)
|
||||
return -1;
|
||||
@@ -966,7 +966,7 @@ _bfd_stab_section_find_nearest_line (bfd *abfd,
|
||||
#define VALOFF (8)
|
||||
#define STABSIZE (12)
|
||||
|
||||
info = *pinfo;
|
||||
info = (struct stab_find_info *) *pinfo;
|
||||
if (info != NULL)
|
||||
{
|
||||
if (info->stabsec == NULL || info->strsec == NULL)
|
||||
@@ -991,7 +991,7 @@ _bfd_stab_section_find_nearest_line (bfd *abfd,
|
||||
char *function_name;
|
||||
bfd_size_type amt = sizeof *info;
|
||||
|
||||
info = bfd_zalloc (abfd, amt);
|
||||
info = (struct stab_find_info *) bfd_zalloc (abfd, amt);
|
||||
if (info == NULL)
|
||||
return FALSE;
|
||||
|
||||
@@ -1024,8 +1024,8 @@ _bfd_stab_section_find_nearest_line (bfd *abfd,
|
||||
? info->strsec->rawsize
|
||||
: info->strsec->size);
|
||||
|
||||
info->stabs = bfd_alloc (abfd, stabsize);
|
||||
info->strs = bfd_alloc (abfd, strsize);
|
||||
info->stabs = (bfd_byte *) bfd_alloc (abfd, stabsize);
|
||||
info->strs = (bfd_byte *) bfd_alloc (abfd, strsize);
|
||||
if (info->stabs == NULL || info->strs == NULL)
|
||||
return FALSE;
|
||||
|
||||
@@ -1042,7 +1042,7 @@ _bfd_stab_section_find_nearest_line (bfd *abfd,
|
||||
reloc_size = bfd_get_reloc_upper_bound (abfd, info->stabsec);
|
||||
if (reloc_size < 0)
|
||||
return FALSE;
|
||||
reloc_vector = bfd_malloc (reloc_size);
|
||||
reloc_vector = (arelent **) bfd_malloc (reloc_size);
|
||||
if (reloc_vector == NULL && reloc_size != 0)
|
||||
return FALSE;
|
||||
reloc_count = bfd_canonicalize_reloc (abfd, info->stabsec, reloc_vector,
|
||||
@@ -1139,7 +1139,7 @@ _bfd_stab_section_find_nearest_line (bfd *abfd,
|
||||
|
||||
amt = info->indextablesize;
|
||||
amt *= sizeof (struct indexentry);
|
||||
info->indextable = bfd_alloc (abfd, amt);
|
||||
info->indextable = (struct indexentry *) bfd_alloc (abfd, amt);
|
||||
if (info->indextable == NULL)
|
||||
return FALSE;
|
||||
|
||||
@@ -1395,7 +1395,7 @@ _bfd_stab_section_find_nearest_line (bfd *abfd,
|
||||
apps keep a copy of a previously returned file name
|
||||
pointer. */
|
||||
len = strlen (file_name) + 1;
|
||||
info->filename = bfd_alloc (abfd, dirlen + len);
|
||||
info->filename = (char *) bfd_alloc (abfd, dirlen + len);
|
||||
if (info->filename == NULL)
|
||||
return FALSE;
|
||||
memcpy (info->filename, directory_name, dirlen);
|
||||
|
||||
Reference in New Issue
Block a user