aboutsummaryrefslogtreecommitdiff
path: root/gas/config/obj-elf.c
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>1999-05-28 15:28:56 +0000
committerDoug Evans <dje@google.com>1999-05-28 15:28:56 +0000
commitd9a622197ded1a6b0497d9a001a172e57e14b0e8 (patch)
tree1f2d26332c921ee47c768764ca485c9a3425db13 /gas/config/obj-elf.c
parentcd8a80baf2969593e9a9c9093608f3c6175619b4 (diff)
downloadgdb-d9a622197ded1a6b0497d9a001a172e57e14b0e8.zip
gdb-d9a622197ded1a6b0497d9a001a172e57e14b0e8.tar.gz
gdb-d9a622197ded1a6b0497d9a001a172e57e14b0e8.tar.bz2
-Wchar-subscripts cleanup
* listing.c (listing_newline): Use unsigned char variable, so calls to isascii,iscntrl are correct. * atof-generic.c (atof_generic): Cast arg to isdigit, et. al. with (unsigned char). * ecoff.c (ecoff_directive_ent,ecoff_stab): Ditto. * config/obj-elf.c (obj_elf_vtable_inherit): Ditto. * config/tc-mips.c (mips_ip,mips16_ip): Ditto. (my_getSmallExpression,get_number,s_mips_ent): Ditto.
Diffstat (limited to 'gas/config/obj-elf.c')
-rw-r--r--gas/config/obj-elf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c
index f50c4b7..4ff8950 100644
--- a/gas/config/obj-elf.c
+++ b/gas/config/obj-elf.c
@@ -1037,7 +1037,7 @@ obj_elf_vtable_inherit (ignore)
if (input_line_pointer[0] == '0'
&& (input_line_pointer[1] == '\0'
- || isspace(input_line_pointer[1])))
+ || isspace ((unsigned char) input_line_pointer[1])))
{
psym = section_symbol (absolute_section);
++input_line_pointer;