diff options
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index d3a7696413d..cddcded25ee 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -1072,7 +1072,7 @@ real_hex_to_f (s, mode) } /* Value of exponent. The exponent field is a decimal integer. */ - while (isdigit(*p)) + while (ISDIGIT(*p)) { k = (*p++ & 0x7f) - '0'; expon = 10 * expon + k; |