diff options
author | Alan Modra <amodra@gmail.com> | 2002-11-30 08:39:46 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-11-30 08:39:46 +0000 |
commit | b34976b65aea8f33690229600bbf4527ec3118e1 (patch) | |
tree | 6411348664ef81ca2aa2e3ff325116e6e6502edf /bfd/peicode.h | |
parent | 583d52d728c60410c0d39bae68ee536a7b9e7a6c (diff) | |
download | binutils-b34976b65aea8f33690229600bbf4527ec3118e1.tar.gz binutils-b34976b65aea8f33690229600bbf4527ec3118e1.tar.bz2 binutils-b34976b65aea8f33690229600bbf4527ec3118e1.zip |
s/boolean/bfd_boolean/ s/true/TRUE/ s/false/FALSE/. Simplify
comparisons of bfd_boolean vars with TRUE/FALSE. Formatting.
Diffstat (limited to 'bfd/peicode.h')
-rw-r--r-- | bfd/peicode.h | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/bfd/peicode.h b/bfd/peicode.h index a621acc4b27..2dff0ac3f68 100644 --- a/bfd/peicode.h +++ b/bfd/peicode.h @@ -58,7 +58,7 @@ PE/PEI rearrangement (and code added): Donn Terry #include "libpei.h" -static boolean (*pe_saved_coff_bfd_print_private_bfd_data) +static bfd_boolean (*pe_saved_coff_bfd_print_private_bfd_data) PARAMS ((bfd *, PTR)) = #ifndef coff_bfd_print_private_bfd_data NULL; @@ -67,10 +67,10 @@ static boolean (*pe_saved_coff_bfd_print_private_bfd_data) #undef coff_bfd_print_private_bfd_data #endif -static boolean pe_print_private_bfd_data PARAMS ((bfd *, PTR)); +static bfd_boolean pe_print_private_bfd_data PARAMS ((bfd *, PTR)); #define coff_bfd_print_private_bfd_data pe_print_private_bfd_data -static boolean (*pe_saved_coff_bfd_copy_private_bfd_data) +static bfd_boolean (*pe_saved_coff_bfd_copy_private_bfd_data) PARAMS ((bfd *, bfd *)) = #ifndef coff_bfd_copy_private_bfd_data NULL; @@ -79,7 +79,7 @@ static boolean (*pe_saved_coff_bfd_copy_private_bfd_data) #undef coff_bfd_copy_private_bfd_data #endif -static boolean pe_bfd_copy_private_bfd_data PARAMS ((bfd *, bfd *)); +static bfd_boolean pe_bfd_copy_private_bfd_data PARAMS ((bfd *, bfd *)); #define coff_bfd_copy_private_bfd_data pe_bfd_copy_private_bfd_data #define coff_mkobject pe_mkobject @@ -91,7 +91,7 @@ static unsigned int coff_swap_reloc_out PARAMS ((bfd *, PTR, PTR)); #endif static void coff_swap_filehdr_in PARAMS ((bfd *, PTR, PTR)); static void coff_swap_scnhdr_in PARAMS ((bfd *, PTR, PTR)); -static boolean pe_mkobject PARAMS ((bfd *)); +static bfd_boolean pe_mkobject PARAMS ((bfd *)); static PTR pe_mkobject_hook PARAMS ((bfd *, PTR, PTR)); #ifdef COFF_IMAGE_WITH_PE @@ -139,7 +139,7 @@ static void pe_ILF_make_a_reloc PARAMS ((pe_ILF_vars *, bfd_vm static void pe_ILF_make_a_symbol PARAMS ((pe_ILF_vars *, const char *, const char *, asection_ptr, flagword)); static void pe_ILF_save_relocs PARAMS ((pe_ILF_vars *, asection_ptr)); static void pe_ILF_make_a_symbol_reloc PARAMS ((pe_ILF_vars *, bfd_vma, bfd_reloc_code_real_type, struct symbol_cache_entry **, unsigned int)); -static boolean pe_ILF_build_a_bfd PARAMS ((bfd *, unsigned int, bfd_byte *, bfd_byte *, unsigned int, unsigned int)); +static bfd_boolean pe_ILF_build_a_bfd PARAMS ((bfd *, unsigned int, bfd_byte *, bfd_byte *, unsigned int, unsigned int)); static const bfd_target * pe_ILF_object_p PARAMS ((bfd *)); static const bfd_target * pe_bfd_object_p PARAMS ((bfd *)); #endif /* COFF_IMAGE_WITH_PE */ @@ -273,7 +273,7 @@ coff_swap_scnhdr_in (abfd, ext, in) #endif } -static boolean +static bfd_boolean pe_mkobject (abfd) bfd * abfd; { @@ -283,7 +283,7 @@ pe_mkobject (abfd) abfd->tdata.pe_obj_data = (struct pe_tdata *) bfd_zalloc (abfd, amt); if (abfd->tdata.pe_obj_data == 0) - return false; + return FALSE; pe = pe_data (abfd); @@ -299,7 +299,7 @@ pe_mkobject (abfd) pe->target_subsystem = PEI_TARGET_SUBSYSTEM; #endif - return true; + return TRUE; } /* Create the COFF backend specific information. */ @@ -355,7 +355,7 @@ pe_mkobject_hook (abfd, filehdr, aouthdr) return (PTR) pe; } -static boolean +static bfd_boolean pe_print_private_bfd_data (abfd, vfile) bfd *abfd; PTR vfile; @@ -363,7 +363,7 @@ pe_print_private_bfd_data (abfd, vfile) FILE *file = (FILE *) vfile; if (!_bfd_XX_print_private_bfd_data_common (abfd, vfile)) - return false; + return FALSE; if (pe_saved_coff_bfd_print_private_bfd_data != NULL) { @@ -372,23 +372,23 @@ pe_print_private_bfd_data (abfd, vfile) return pe_saved_coff_bfd_print_private_bfd_data (abfd, vfile); } - return true; + return TRUE; } /* Copy any private info we understand from the input bfd to the output bfd. */ -static boolean +static bfd_boolean pe_bfd_copy_private_bfd_data (ibfd, obfd) bfd *ibfd, *obfd; { if (!_bfd_XX_bfd_copy_private_bfd_data_common (ibfd, obfd)) - return false; + return FALSE; if (pe_saved_coff_bfd_copy_private_bfd_data) return pe_saved_coff_bfd_copy_private_bfd_data (ibfd, obfd); - return true; + return TRUE; } #define coff_bfd_copy_private_section_data \ @@ -518,7 +518,7 @@ pe_ILF_save_relocs (pe_ILF_vars * vars, abort (); coff_section_data (vars->abfd, sec)->relocs = vars->int_reltab; - coff_section_data (vars->abfd, sec)->keep_relocs = true; + coff_section_data (vars->abfd, sec)->keep_relocs = TRUE; sec->relocation = vars->reltab; sec->reloc_count = vars->relcount; @@ -610,7 +610,7 @@ pe_ILF_make_a_symbol (pe_ILF_vars * vars, #if 0 /* See comment above. */ sym->symbol.value = 0; sym->symbol.udata.i = 0; - sym->done_lineno = false; + sym->done_lineno = FALSE; sym->lineno = NULL; #endif @@ -753,7 +753,7 @@ static jump_table jtab[] = #endif /* Build a full BFD from the information supplied in a ILF object. */ -static boolean +static bfd_boolean pe_ILF_build_a_bfd (bfd * abfd, unsigned int magic, bfd_byte * symbol_name, @@ -784,12 +784,12 @@ pe_ILF_build_a_bfd (bfd * abfd, /* XXX code yet to be written. */ _bfd_error_handler (_("%s: Unhandled import type; %x"), bfd_archive_filename (abfd), import_type); - return false; + return FALSE; default: _bfd_error_handler (_("%s: Unrecognised import type; %x"), bfd_archive_filename (abfd), import_type); - return false; + return FALSE; } switch (import_name_type) @@ -803,7 +803,7 @@ pe_ILF_build_a_bfd (bfd * abfd, default: _bfd_error_handler (_("%s: Unrecognised import name type; %x"), bfd_archive_filename (abfd), import_name_type); - return false; + return FALSE; } /* Initialise local variables. @@ -815,7 +815,7 @@ pe_ILF_build_a_bfd (bfd * abfd, so allocate all the space that we will need right now. */ ptr = bfd_zalloc (abfd, (bfd_size_type) ILF_DATA_SIZE); if (ptr == NULL) - return false; + return FALSE; /* Create a bfd_in_memory structure. */ vars.bim = (struct bfd_in_memory *) ptr; @@ -875,7 +875,7 @@ pe_ILF_build_a_bfd (bfd * abfd, id4 = pe_ILF_make_a_section (& vars, ".idata$4", SIZEOF_IDATA4, 0); id5 = pe_ILF_make_a_section (& vars, ".idata$5", SIZEOF_IDATA5, 0); if (id4 == NULL || id5 == NULL) - return false; + return FALSE; /* Fill in the contents of these sections. */ if (import_name_type == IMPORT_ORDINAL) @@ -894,7 +894,7 @@ pe_ILF_build_a_bfd (bfd * abfd, /* Create .idata$6 - the Hint Name Table. */ id6 = pe_ILF_make_a_section (& vars, ".idata$6", SIZEOF_IDATA6, 0); if (id6 == NULL) - return false; + return FALSE; /* If necessary, trim the import symbol name. */ symbol = symbol_name; @@ -950,7 +950,7 @@ pe_ILF_build_a_bfd (bfd * abfd, /* Create the .text section. */ text = pe_ILF_make_a_section (& vars, ".text", jtab[i].size, SEC_CODE); if (text == NULL) - return false; + return FALSE; /* Copy in the jump code. */ memcpy (text->contents, jtab[i].data, jtab[i].size); @@ -999,10 +999,10 @@ pe_ILF_build_a_bfd (bfd * abfd, if ( ! bfd_set_start_address (abfd, (bfd_vma) 0) || ! bfd_coff_set_arch_mach_hook (abfd, & internal_f)) - return false; + return FALSE; if (bfd_coff_mkobject_hook (abfd, (PTR) & internal_f, NULL) == NULL) - return false; + return FALSE; coff_data (abfd)->pe = 1; #ifdef THUMBPEMAGIC @@ -1053,17 +1053,17 @@ pe_ILF_build_a_bfd (bfd * abfd, obj_raw_syment_count (abfd) = vars.sym_index; obj_coff_external_syms (abfd) = (PTR) vars.esym_table; - obj_coff_keep_syms (abfd) = true; + obj_coff_keep_syms (abfd) = TRUE; obj_convert (abfd) = vars.sym_table; obj_conv_table_size (abfd) = vars.sym_index; obj_coff_strings (abfd) = vars.string_table; - obj_coff_keep_strings (abfd) = true; + obj_coff_keep_strings (abfd) = TRUE; abfd->flags |= HAS_SYMS; - return true; + return TRUE; } /* We have detected a Image Library Format archive element. |