From: Gerald Pfeifer Date: Sat, 15 Jan 2000 03:00:11 +0000 (+0100) Subject: * defaults.h (ASM_OUTPUT_ASCII): Use ISDIGIT. X-Git-Tag: prereleases/libstdc++-2.92~8706 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d07ecc3bdf8bc2a5d055405bdc0b51c04237fc5d;p=thirdparty%2Fgcc.git * defaults.h (ASM_OUTPUT_ASCII): Use ISDIGIT. From-SVN: r31433 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cd9fbd622385..c94692fbd192 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-01-15 Gerald Pfeifer + + * defaults.h (ASM_OUTPUT_ASCII): Use ISDIGIT. + 2000-01-14 Nathan Sidwell * config.in: Rebuilt for 2000-01-13 change to acconfig.h. diff --git a/gcc/defaults.h b/gcc/defaults.h index a1f174162a8e..0018bc159174 100644 --- a/gcc/defaults.h +++ b/gcc/defaults.h @@ -90,8 +90,7 @@ do { ASM_OUTPUT_LABEL(FILE,LABEL_ALTERNATE_NAME (INSN)); } while (0) The Vax assembler fails to stop reading the escape \ after three digits, so this is the only way we \ can get it to parse the data properly. */ \ - if (i < thissize - 1 \ - && p[i + 1] >= '0' && p[i + 1] <= '9') \ + if (i < thissize - 1 && ISDIGIT(p[i + 1])) \ fprintf (asm_out_file, "\"\n\t.ascii \""); \ } \ } \