From 278ed1281c21b826c3180091d4aa2809985aa78c Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Mon, 14 Jul 2003 10:06:06 +0000 Subject: Remove uses of ctype.h --- gas/config/tc-ip2k.c | 2 -- gas/config/tc-tic4x.c | 19 +++++++++---------- 2 files changed, 9 insertions(+), 12 deletions(-) (limited to 'gas/config') diff --git a/gas/config/tc-ip2k.c b/gas/config/tc-ip2k.c index 6aef335..c6b9f2e 100644 --- a/gas/config/tc-ip2k.c +++ b/gas/config/tc-ip2k.c @@ -19,8 +19,6 @@ Boston, MA 02111-1307, USA. */ #include -#include - #include "as.h" #include "subsegs.h" #include "symcat.h" diff --git a/gas/config/tc-tic4x.c b/gas/config/tc-tic4x.c index 987b3bf..145700f 100644 --- a/gas/config/tc-tic4x.c +++ b/gas/config/tc-tic4x.c @@ -46,8 +46,7 @@ */ #include -#include - +#include "safe-ctype.h" #include "as.h" #include "opcode/tic4x.h" #include "subsegs.h" @@ -737,7 +736,7 @@ tic4x_insert_reg (regname, regnum) symbol_table_insert (symbol_new (regname, reg_section, (valueT) regnum, &zero_address_frag)); for (i = 0; regname[i]; i++) - buf[i] = islower (regname[i]) ? toupper (regname[i]) : regname[i]; + buf[i] = islower (regname[i]) ? TOUPPER (regname[i]) : regname[i]; buf[i] = '\0'; symbol_table_insert (symbol_new (buf, reg_section, (valueT) regnum, @@ -1556,7 +1555,7 @@ tic4x_indirect_parse (operand, indirect) if (*s == '%') s++; #endif - while (isalnum (*s)) + while (ISALNUM (*s)) *b++ = *s++; *b++ = '\0'; if (!(symbolP = symbol_find (name))) @@ -1623,7 +1622,7 @@ tic4x_indirect_parse (operand, indirect) break; default: - if (tolower (*s) != *n) + if (TOLOWER (*s) != *n) return 0; s++; } @@ -2869,7 +2868,7 @@ md_parse_option (c, arg) switch (c) { case OPTION_CPU: /* cpu brand */ - if (tolower (*arg) == 'c') + if (TOLOWER (*arg) == 'c') arg++; tic4x_cpu = atoi (arg); if (!IS_CPU_TIC3X (tic4x_cpu) && !IS_CPU_TIC4X (tic4x_cpu)) @@ -2959,14 +2958,14 @@ tic4x_unrecognized_line (c) int lab; char *s; - if (c != '$' || !isdigit (input_line_pointer[0])) + if (c != '$' || ! ISDIGIT (input_line_pointer[0])) return 0; s = input_line_pointer; /* Let's allow multiple digit local labels. */ lab = 0; - while (isdigit (*s)) + while (ISDIGIT (*s)) { lab = lab * 10 + *s - '0'; s++; @@ -2991,13 +2990,13 @@ md_undefined_symbol (name) char *name; { /* Look for local labels of the form $n. */ - if (name[0] == '$' && isdigit (name[1])) + if (name[0] == '$' && ISDIGIT (name[1])) { symbolS *symbolP; char *s = name + 1; int lab = 0; - while (isdigit ((unsigned char) *s)) + while (ISDIGIT ((unsigned char) *s)) { lab = lab * 10 + *s - '0'; s++; -- cgit v1.1