From f3ad1f9c0d8f61ccd729b0b9687944856dd9cf07 Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Wed, 8 Sep 1999 06:51:23 +0000 Subject: Linas Vepstas * c-common.c: Use ISGRAPH, ISLOWER, toupper. * c-lex.c, cccp.c, cexp.c, cexp.y, cppexp.c, dwarf2out.c, genattr.c, genattrtab.c, genemit.c, genextract.c, genpeep.c, tree.c: Likewise. * system.h (IN_CTYPE_DOMAIN): Define to 1 if HOST_EBCDIC. * defaults.h (TARGET_ESC): Add default. From-SVN: r29192 --- gcc/genattrtab.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'gcc/genattrtab.c') diff --git a/gcc/genattrtab.c b/gcc/genattrtab.c index 254f78c..dd16a13 100644 --- a/gcc/genattrtab.c +++ b/gcc/genattrtab.c @@ -1357,8 +1357,8 @@ convert_const_symbol_ref (exp, attr) strcat (p, "_"); strcat (p, XSTR (av->value, 0)); for (; *p != '\0'; p++) - if (*p >= 'a' && *p <= 'z') - *p -= 'a' - 'A'; + if (ISLOWER(*p)) + *p = toupper (*p); value = attr_rtx (SYMBOL_REF, string); RTX_UNCHANGING_P (value) = 1; @@ -2841,8 +2841,8 @@ evaluate_eq_attr (exp, value, insn_code, insn_index) strcat (string, "_"); strcat (string, XSTR (exp, 1)); for (p = string; *p ; p++) - if (*p >= 'a' && *p <= 'z') - *p -= 'a' - 'A'; + if (ISLOWER(*p)) + *p = toupper (*p); newexp = attr_rtx (EQ, value, attr_rtx (SYMBOL_REF, @@ -5357,10 +5357,10 @@ write_upcase (str) char *str; { while (*str) - if (*str < 'a' || *str > 'z') - printf ("%c", *str++); + if (ISLOWER(*str)) + printf ("%c", toupper(*str++)); else - printf ("%c", *str++ - 'a' + 'A'); + printf ("%c", *str++); } static void -- cgit v1.1