Use bool in ld
* sysdep.h (POISON_BFD_BOOLEAN): Define. * configure.ac (elf_list_options, elf_shlib_list_options=false), (elf_plt_unwind_list_options=false): Replace FALSE with false, and TRUE with true. * emulparams/call_nop.sh, * emulparams/cet.sh, * emulparams/dynamic_undefined_weak.sh, * emulparams/elf32b4300.sh, * emulparams/elf32lm32.sh, * emulparams/elf32lr5900.sh, * emulparams/elf32lr5900n32.sh, * emulparams/elf32visium.sh, * emulparams/elf_x86_64.sh, * emulparams/extern_protected_data.sh, * emulparams/plt_unwind.sh, * emulparams/reloc_overflow.sh, * emulparams/static.sh, * emulparams/x86-64-lam.sh, * emultempl/aarch64elf.em, * emultempl/aix.em, * emultempl/alphaelf.em, * emultempl/armcoff.em, * emultempl/armelf.em, * emultempl/avrelf.em, * emultempl/beos.em, * emultempl/bfin.em, * emultempl/cr16elf.em, * emultempl/crxelf.em, * emultempl/cskyelf.em, * emultempl/elf.em, * emultempl/genelf.em, * emultempl/hppaelf.em, * emultempl/linux.em, * emultempl/m68hc1xelf.em, * emultempl/metagelf.em, * emultempl/mipself.em, * emultempl/mmix-elfnmmo.em, * emultempl/mmixelf.em, * emultempl/mmo.em, * emultempl/msp430.em, * emultempl/nios2elf.em, * emultempl/pdp11.em, * emultempl/pe.em, * emultempl/pep.em, * emultempl/ppc32elf.em, * emultempl/ppc64elf.em, * emultempl/rxelf.em, * emultempl/rxlinux.em, * emultempl/scoreelf.em, * emultempl/solaris2.em, * emultempl/spuelf.em, * emultempl/ticoff.em, * emultempl/v850elf.em, * emultempl/vms.em, * emultempl/xtensaelf.em, * emultempl/z80.em, * ld.h, * ldbuildid.c, * ldbuildid.h, * ldcref.c, * ldctor.c, * ldctor.h, * ldelf.c, * ldelf.h, * ldelfgen.c, * ldelfgen.h, * ldemul.c, * ldemul.h, * ldexp.c, * ldexp.h, * ldfile.c, * ldfile.h, * ldgram.y, * ldlang.c, * ldlang.h, * ldmain.c, * ldmain.h, * ldmisc.c, * ldmisc.h, * ldwrite.c, * lexsup.c, * mri.c, * pe-dll.c, * pe-dll.h, * pep-dll.h, * plugin.c, * plugin.h, * testplug.c, * testplug2.c, * testplug3.c, * testplug4.c: Replace bfd_boolean with bool, FALSE with false, and TRUE with true. * configure: Regenerate.
This commit is contained in:
parent
015dc7e1f8
commit
f38a2680c2
91 changed files with 1571 additions and 1532 deletions
|
@ -41,7 +41,7 @@ typedef struct claim_file
|
|||
{
|
||||
struct claim_file *next;
|
||||
struct ld_plugin_input_file file;
|
||||
bfd_boolean claimed;
|
||||
bool claimed;
|
||||
struct ld_plugin_symbol *symbols;
|
||||
int n_syms_allocated;
|
||||
int n_syms_used;
|
||||
|
@ -122,11 +122,11 @@ static enum ld_plugin_status onload_ret = LDPS_OK;
|
|||
static enum ld_plugin_status claim_file_ret = LDPS_OK;
|
||||
static enum ld_plugin_status all_symbols_read_ret = LDPS_OK;
|
||||
static enum ld_plugin_status cleanup_ret = LDPS_OK;
|
||||
static bfd_boolean register_claimfile_hook = TRUE;
|
||||
static bfd_boolean register_allsymbolsread_hook = FALSE;
|
||||
static bfd_boolean register_cleanup_hook = FALSE;
|
||||
static bfd_boolean dumpresolutions = FALSE;
|
||||
static bfd_boolean allsymbolsread_silent = FALSE;
|
||||
static bool register_claimfile_hook = true;
|
||||
static bool register_allsymbolsread_hook = false;
|
||||
static bool register_cleanup_hook = false;
|
||||
static bool dumpresolutions = false;
|
||||
static bool allsymbolsread_silent = false;
|
||||
|
||||
/* The master list of all claimable/claimed files. */
|
||||
static claim_file_t *claimfiles_list = NULL;
|
||||
|
@ -306,7 +306,7 @@ set_ret_val (const char *whichval, enum ld_plugin_status retval)
|
|||
|
||||
/* Records hooks which should be registered. */
|
||||
static enum ld_plugin_status
|
||||
set_register_hook (const char *whichhook, bfd_boolean yesno)
|
||||
set_register_hook (const char *whichhook, bool yesno)
|
||||
{
|
||||
if (!strcmp ("claimfile", whichhook))
|
||||
register_claimfile_hook = yesno;
|
||||
|
@ -315,7 +315,7 @@ set_register_hook (const char *whichhook, bfd_boolean yesno)
|
|||
else if (!strcmp ("allsymbolsreadsilent", whichhook))
|
||||
{
|
||||
register_allsymbolsread_hook = yesno;
|
||||
allsymbolsread_silent = TRUE;
|
||||
allsymbolsread_silent = true;
|
||||
}
|
||||
else if (!strcmp ("cleanup", whichhook))
|
||||
register_cleanup_hook = yesno;
|
||||
|
@ -348,9 +348,9 @@ parse_option (const char *opt)
|
|||
else if (!strncmp ("pass", opt, 4))
|
||||
return set_ret_val (opt + 4, LDPS_OK);
|
||||
else if (!strncmp ("register", opt, 8))
|
||||
return set_register_hook (opt + 8, TRUE);
|
||||
return set_register_hook (opt + 8, true);
|
||||
else if (!strncmp ("noregister", opt, 10))
|
||||
return set_register_hook (opt + 10, FALSE);
|
||||
return set_register_hook (opt + 10, false);
|
||||
else if (!strncmp ("claim:", opt, 6))
|
||||
return record_claim_file (opt + 6, 0);
|
||||
else if (!strncmp ("sym:", opt, 4))
|
||||
|
@ -362,7 +362,7 @@ parse_option (const char *opt)
|
|||
else if (!strncmp ("dir:", opt, 4))
|
||||
return record_add_file (opt + 4, ADD_DIR);
|
||||
else if (!strcmp ("dumpresolutions", opt))
|
||||
dumpresolutions = TRUE;
|
||||
dumpresolutions = true;
|
||||
else
|
||||
return LDPS_ERR;
|
||||
return LDPS_OK;
|
||||
|
@ -524,7 +524,7 @@ onclaim_file (const struct ld_plugin_input_file *file, int *claimed)
|
|||
size_t len = strlen (file->name);
|
||||
char *name = xstrdup (file->name);
|
||||
char *p = name + len;
|
||||
bfd_boolean islib;
|
||||
bool islib;
|
||||
|
||||
/* Only match the file name without the directory part. */
|
||||
islib = *p == 'a' && *(p - 1) == '.';
|
||||
|
@ -553,7 +553,7 @@ onclaim_file (const struct ld_plugin_input_file *file, int *claimed)
|
|||
*claimed = (claimfile != 0);
|
||||
if (claimfile)
|
||||
{
|
||||
claimfile->claimed = TRUE;
|
||||
claimfile->claimed = true;
|
||||
claimfile->file = *file;
|
||||
if (claimfile->n_syms_used && !tv_add_symbols)
|
||||
return LDPS_ERR;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue