diff options
Diffstat (limited to 'gas/write.c')
-rw-r--r-- | gas/write.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gas/write.c b/gas/write.c index 95922bb..acc7c19 100644 --- a/gas/write.c +++ b/gas/write.c @@ -235,7 +235,7 @@ fix_new (fragS *frag, /* Which frag? */ RELOC_ENUM r_type /* Relocation type. */) { return fix_new_internal (frag, where, size, add_symbol, - (symbolS *) NULL, offset, pcrel, r_type, FALSE); + (symbolS *) NULL, offset, pcrel, r_type, false); } /* Create a fixup for an expression. Currently we only support fixups @@ -304,7 +304,7 @@ fix_new_exp (fragS *frag, /* Which frag? */ } return fix_new_internal (frag, where, size, add, sub, off, pcrel, - r_type, FALSE); + r_type, false); } /* Create a fixup at the beginning of FRAG. The arguments are the same @@ -315,7 +315,7 @@ fix_at_start (fragS *frag, unsigned long size, symbolS *add_symbol, offsetT offset, int pcrel, RELOC_ENUM r_type) { return fix_new_internal (frag, 0, size, add_symbol, - (symbolS *) NULL, offset, pcrel, r_type, TRUE); + (symbolS *) NULL, offset, pcrel, r_type, true); } /* Generic function to determine whether a fixup requires a relocation. */ @@ -1750,7 +1750,7 @@ set_symtab (void) int nsyms; asymbol **asympp; symbolS *symp; - bfd_boolean result; + bool result; /* Count symbols. We can't rely on a count made by the loop in write_object_file, because *_frob_file may add a new symbol or @@ -1986,7 +1986,7 @@ maybe_generate_build_notes (void) return; /* Create a GNU Build Attribute section. */ - sec = subseg_new (GNU_BUILD_ATTRS_SECTION_NAME, FALSE); + sec = subseg_new (GNU_BUILD_ATTRS_SECTION_NAME, false); elf_section_type (sec) = SHT_NOTE; bfd_set_section_flags (sec, (SEC_READONLY | SEC_HAS_CONTENTS | SEC_DATA | SEC_OCTETS)); @@ -2331,7 +2331,7 @@ write_object_file (void) if (symbol_rootP) { symbolS *symp; - bfd_boolean skip_next_symbol = FALSE; + bool skip_next_symbol = false; for (symp = symbol_rootP; symp; symp = symbol_next (symp)) { @@ -2343,7 +2343,7 @@ write_object_file (void) /* Don't do anything besides moving the value of the symbol from the GAS value-field to the BFD value-field. */ symbol_get_bfdsym (symp)->value = S_GET_VALUE (symp); - skip_next_symbol = FALSE; + skip_next_symbol = false; continue; } @@ -2447,7 +2447,7 @@ write_object_file (void) symbol warned about. Don't let anything object-format or target-specific muck with it; it's ready for output. */ if (symbol_get_bfdsym (symp)->flags & BSF_WARNING) - skip_next_symbol = TRUE; + skip_next_symbol = true; } } |