Commit d07ecc3b by Gerald Pfeifer Committed by Gerald Pfeifer

* defaults.h (ASM_OUTPUT_ASCII): Use ISDIGIT.

From-SVN: r31433
parent f2aabbd8
2000-01-15 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* defaults.h (ASM_OUTPUT_ASCII): Use ISDIGIT.
2000-01-14 Nathan Sidwell <sidwell@codesourcery.com> 2000-01-14 Nathan Sidwell <sidwell@codesourcery.com>
* config.in: Rebuilt for 2000-01-13 change to acconfig.h. * config.in: Rebuilt for 2000-01-13 change to acconfig.h.
......
...@@ -90,8 +90,7 @@ do { ASM_OUTPUT_LABEL(FILE,LABEL_ALTERNATE_NAME (INSN)); } while (0) ...@@ -90,8 +90,7 @@ do { ASM_OUTPUT_LABEL(FILE,LABEL_ALTERNATE_NAME (INSN)); } while (0)
The Vax assembler fails to stop reading the escape \ The Vax assembler fails to stop reading the escape \
after three digits, so this is the only way we \ after three digits, so this is the only way we \
can get it to parse the data properly. */ \ can get it to parse the data properly. */ \
if (i < thissize - 1 \ if (i < thissize - 1 && ISDIGIT(p[i + 1])) \
&& p[i + 1] >= '0' && p[i + 1] <= '9') \
fprintf (asm_out_file, "\"\n\t.ascii \""); \ fprintf (asm_out_file, "\"\n\t.ascii \""); \
} \ } \
} \ } \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment