summaryrefslogtreecommitdiff
path: root/gcc/config/m68k/amix.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/config/m68k/amix.h')
-rw-r--r--gcc/config/m68k/amix.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/m68k/amix.h b/gcc/config/m68k/amix.h
index d1968c028d3..998240eb386 100644
--- a/gcc/config/m68k/amix.h
+++ b/gcc/config/m68k/amix.h
@@ -101,7 +101,7 @@ do { \
#define ASM_OUTPUT_ASCII(FILE,PTR,LEN) \
do { \
register size_t sp = 0, limit = (LEN); \
- fprintf ((FILE), "%s", BYTE_ASM_OP); \
+ fputs (integer_asm_op (1, TRUE), (FILE)); \
do { \
int ch = (PTR)[sp]; \
if (ch > ' ' && ! (ch & 0x80) && ch != '\\') \
@@ -116,7 +116,7 @@ do { \
{ \
if ((sp % 10) == 0) \
{ \
- fprintf ((FILE), "\n%s", BYTE_ASM_OP); \
+ fprintf ((FILE), "\n%s", integer_asm_op (1, TRUE)); \
} \
else \
{ \