mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-17 07:53:51 +08:00
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:
16
ld/ldctor.c
16
ld/ldctor.c
@ -40,7 +40,7 @@ lang_statement_list_type constructor_list;
|
||||
/* Whether the constructors should be sorted. Note that this is
|
||||
global for the entire link; we assume that there is only a single
|
||||
CONSTRUCTORS command in the linker script. */
|
||||
bfd_boolean constructors_sorted;
|
||||
bool constructors_sorted;
|
||||
|
||||
/* The sets we have seen. */
|
||||
struct set_info *sets;
|
||||
@ -195,15 +195,15 @@ ctor_cmp (const void *p1, const void *p2)
|
||||
void
|
||||
ldctor_build_sets (void)
|
||||
{
|
||||
static bfd_boolean called;
|
||||
bfd_boolean header_printed;
|
||||
static bool called;
|
||||
bool header_printed;
|
||||
struct set_info *p;
|
||||
|
||||
/* The emulation code may call us directly, but we only want to do
|
||||
this once. */
|
||||
if (called)
|
||||
return;
|
||||
called = TRUE;
|
||||
called = true;
|
||||
|
||||
if (constructors_sorted)
|
||||
{
|
||||
@ -246,7 +246,7 @@ ldctor_build_sets (void)
|
||||
lang_list_init (&constructor_list);
|
||||
push_stat_ptr (&constructor_list);
|
||||
|
||||
header_printed = FALSE;
|
||||
header_printed = false;
|
||||
for (p = sets; p != NULL; p = p->next)
|
||||
{
|
||||
struct set_element *e;
|
||||
@ -326,10 +326,10 @@ ldctor_build_sets (void)
|
||||
lang_add_assignment (exp_assign (".",
|
||||
exp_unop (ALIGN_K,
|
||||
exp_intop (reloc_size)),
|
||||
FALSE));
|
||||
false));
|
||||
lang_add_assignment (exp_assign (p->h->root.string,
|
||||
exp_nameop (NAME, "."),
|
||||
FALSE));
|
||||
false));
|
||||
lang_add_data (size, exp_intop (p->count));
|
||||
|
||||
for (e = p->elements; e != NULL; e = e->u.next)
|
||||
@ -341,7 +341,7 @@ ldctor_build_sets (void)
|
||||
if (!header_printed)
|
||||
{
|
||||
minfo (_("\nSet Symbol\n\n"));
|
||||
header_printed = TRUE;
|
||||
header_printed = true;
|
||||
}
|
||||
|
||||
minfo ("%s", p->h->root.string);
|
||||
|
Reference in New Issue
Block a user