diff options
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index 22d7d48..b1856a5 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -2432,7 +2432,7 @@ requires_inout (p) case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': /* Skip the balance of the matching constraint. */ - while (*p >= '0' && *p <= '9') + while (ISDIGIT (*p)) p++; break; |