diff options
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 6bd8d73..0e9014aa 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -4825,9 +4825,7 @@ assemble_vtable_entry (symbol, offset) { fputs ("\t.vtable_entry ", asm_out_file); output_addr_const (asm_out_file, symbol); - fputs (", ", asm_out_file); - fprintf (asm_out_file, HOST_WIDE_INT_PRINT_DEC, offset); - fputc ('\n', asm_out_file); + fprintf (asm_out_file, ", " HOST_WIDE_INT_PRINT_DEC "\n", offset); } /* Used for vtable gc in GNU binutils. Record the class hierarchy by noting |