diff options
Diffstat (limited to 'gcc/config/pa/pa.c')
-rw-r--r-- | gcc/config/pa/pa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 42ead8fed95..cfdafa69c27 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -8612,7 +8612,7 @@ pa_asm_output_aligned_bss (FILE *stream, fprintf (stream, "\t.align %u\n", align / BITS_PER_UNIT); ASM_OUTPUT_LABEL (stream, name); - fprintf (stream, "\t.block "HOST_WIDE_INT_PRINT_UNSIGNED"\n", size); + fprintf (stream, "\t.block " HOST_WIDE_INT_PRINT_UNSIGNED"\n", size); } /* Both the HP and GNU assemblers under HP-UX provide a .comm directive @@ -8642,7 +8642,7 @@ pa_asm_output_aligned_common (FILE *stream, switch_to_section (bss_section); assemble_name (stream, name); - fprintf (stream, "\t.comm "HOST_WIDE_INT_PRINT_UNSIGNED"\n", + fprintf (stream, "\t.comm " HOST_WIDE_INT_PRINT_UNSIGNED"\n", MAX (size, align / BITS_PER_UNIT)); } @@ -8669,7 +8669,7 @@ pa_asm_output_aligned_local (FILE *stream, #endif ASM_OUTPUT_LABEL (stream, name); - fprintf (stream, "\t.block "HOST_WIDE_INT_PRINT_UNSIGNED"\n", size); + fprintf (stream, "\t.block " HOST_WIDE_INT_PRINT_UNSIGNED"\n", size); } /* Returns 1 if the 6 operands specified in OPERANDS are suitable for |