diff options
Diffstat (limited to 'gas/read.c')
-rw-r--r-- | gas/read.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -64,7 +64,7 @@ #endif char *input_line_pointer; /*->next char of source file to parse. */ -bfd_boolean input_from_string = FALSE; +bool input_from_string = false; #if BITS_PER_CHAR != 8 /* The following table is indexed by[(char)] and will break if @@ -795,7 +795,7 @@ assemble_one (char *line) #endif /* HANDLE_BUNDLE */ -static bfd_boolean +static bool in_bss (void) { flagword flags = bfd_section_flags (now_seg); @@ -901,7 +901,7 @@ read_a_source_file (const char *name) #endif while (input_line_pointer < buffer_limit) { - bfd_boolean was_new_line; + bool was_new_line; /* We have more of this buffer to parse. */ /* We now have input_line_pointer->1st char of next line. @@ -6374,7 +6374,7 @@ temp_ilp (char *buf) input_line_pointer = buf; buffer_limit = buf + strlen (buf); - input_from_string = TRUE; + input_from_string = true; } /* Restore a saved input line pointer. */ @@ -6386,7 +6386,7 @@ restore_ilp (void) input_line_pointer = saved_ilp; buffer_limit = saved_limit; - input_from_string = FALSE; + input_from_string = false; saved_ilp = NULL; } |