diff options
Diffstat (limited to 'gcc/config/pdp11/pdp11.c')
-rw-r--r-- | gcc/config/pdp11/pdp11.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/pdp11/pdp11.c b/gcc/config/pdp11/pdp11.c index 3ba5bc9..4036b12 100644 --- a/gcc/config/pdp11/pdp11.c +++ b/gcc/config/pdp11/pdp11.c @@ -245,7 +245,7 @@ pdp11_output_function_prologue (FILE *stream, HOST_WIDE_INT size) { fprintf (stream, "\t/*abuse empty parameter slot for locals!*/\n"); if (size > 2) - fprintf(stream, "\tsub $%#o, sp\n", size - 2); + asm_fprintf (stream, "\tsub $%#wo, sp\n", size - 2); } } @@ -285,7 +285,7 @@ pdp11_output_function_prologue (FILE *stream, HOST_WIDE_INT size) /* make frame */ if (fsize) - fprintf (stream, "\tsub $%#o, sp\n", fsize); + asm_fprintf (stream, "\tsub $%#wo, sp\n", fsize); /* save CPU registers */ for (regno = 0; regno < 8; regno++) |