aboutsummaryrefslogtreecommitdiff
path: root/gcc/stmt.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>1998-05-06 12:56:58 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>1998-05-06 12:56:58 +0000
commite9a780ecec4639ab0e2975a53c08e4dcfd7fafc2 (patch)
tree4be0ba56ed3d601b4b5711c8247791d8c7acf4b1 /gcc/stmt.c
parentd4c3e60e96683c90bd06f62da8157f84c9a3225c (diff)
downloadgcc-e9a780ecec4639ab0e2975a53c08e4dcfd7fafc2.zip
gcc-e9a780ecec4639ab0e2975a53c08e4dcfd7fafc2.tar.gz
gcc-e9a780ecec4639ab0e2975a53c08e4dcfd7fafc2.tar.bz2
c-common.c: Convert to using ctype macros defined in system.h.
* c-common.c: Convert to using ctype macros defined in system.h. * c-lex.c: Likewise. * cccp.c: Likewise. * collect2.c: Likewise. * rs6000.c: Likewise. * cpplib.c: Likewise. * fix-header.c: Likewise. * gcc.c: Likewise. * gen-protos.c: Likewise. * pexecute.c: Likewise. * protoize.c: Likewise. * rtl.c: Likewise. * scan.c: Likewise. * stmt.c: Likewise. * tlink.c: Likewise. * toplev.c: Likewise. From-SVN: r19579
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r--gcc/stmt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c
index 4e26e78..98688aa 100644
--- a/gcc/stmt.c
+++ b/gcc/stmt.c
@@ -5055,11 +5055,11 @@ estimate_case_costs (node)
for (i = 0; i < 128; i++)
{
- if (isalnum (i))
+ if (ISALNUM (i))
cost_table[i] = 16;
- else if (ispunct (i))
+ else if (ISPUNCT (i))
cost_table[i] = 8;
- else if (iscntrl (i))
+ else if (ISCNTRL (i))
cost_table[i] = -1;
}