diff options
Diffstat (limited to 'gcc/gensupport.c')
-rw-r--r-- | gcc/gensupport.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/gensupport.c b/gcc/gensupport.c index e5ce347168e..a52457196ce 100644 --- a/gcc/gensupport.c +++ b/gcc/gensupport.c @@ -588,8 +588,7 @@ shift_output_template (new, old, disp) c = *old++; if (ISDIGIT ((unsigned char) c)) c += disp; - else if (ISUPPER ((unsigned char) c) - || ISLOWER ((unsigned char) c)) + else if (ISALPHA (c)) { *new++ = c; c = *old++ + disp; |