diff options
Diffstat (limited to 'gcc/config/m88k/m88k.c')
-rw-r--r-- | gcc/config/m88k/m88k.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/m88k/m88k.c b/gcc/config/m88k/m88k.c index db5e069d594..4f596ad8b11 100644 --- a/gcc/config/m88k/m88k.c +++ b/gcc/config/m88k/m88k.c @@ -1662,7 +1662,7 @@ output_ascii (file, opcode, max, p, size) num += 2; in_escape = 0; } - else if (in_escape && c >= '0' && c <= '9') + else if (in_escape && ISDIGIT (c)) { /* If a digit follows an octal-escape, the VAX assembler fails to stop reading the escape after three digits. Continue to |