From 4a0a75dd441da8834907fc7d78634b458f71ce58 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Fri, 16 May 2003 18:57:46 +0000 Subject: alpha.c (print_operand_address, [...]): Use string concatentation on HOST_WIDE_INT_PRINT_* format specifier to collapse... * alpha.c (print_operand_address, alpha_start_function, unicosmk_output_ssib): Use string concatentation on HOST_WIDE_INT_PRINT_* format specifier to collapse multiple function calls into one. * arm.c (arm_print_operand): Likewise. * cris.c (cris_asm_output_mi_thunk): Likewise. * frv.c (frv_asm_output_mi_thunk): Likewise. * ia64.c (ia64_print_operand, process_set): Likewise. * m68k.c (m68k_output_function_epilogue, m68k_output_mi_thunk): Likewise. * mips/iris5gas.h (PUT_SDB_SIZE): Likewise. * mips.h (PUT_SDB_INT_VAL, PUT_SDB_SIZE): Likewise. * pa.c (output_div_insn, pa_asm_output_mi_thunk): Likewise. * pa.h (PRINT_OPERAND_ADDRESS): Likewise. * rs6000.c (rs6000_va_start, print_operand_address): Likewise. * s390.c (s390_assemble_integer): Likewise. * sparc.c (sparc_flat_function_prologue, sparc_flat_function_epilogue): Likewise. * stormy16.c (xstormy16_print_operand_address, xstormy16_print_operand): Likewise. * vax.c (vax_output_mi_thunk): Likewise. From-SVN: r66876 --- gcc/config/m68k/m68k.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'gcc/config/m68k') diff --git a/gcc/config/m68k/m68k.c b/gcc/config/m68k/m68k.c index c85bc81..6f554a5 100644 --- a/gcc/config/m68k/m68k.c +++ b/gcc/config/m68k/m68k.c @@ -4021,11 +4021,8 @@ m68k_output_mi_thunk (file, thunk, delta, vcall_offset, function) else if (delta < 0 && delta >= -8) asm_fprintf (file, "\tsubq.l %I%d,4(%Rsp)\n", (int) -delta); else - { - asm_fprintf (file, "\tadd.l %I"); - fprintf (file, HOST_WIDE_INT_PRINT_DEC, delta); - asm_fprintf (file, ",4(%Rsp)\n"); - } + asm_fprintf (file, "\tadd.l %I" HOST_WIDE_INT_PRINT_DEC ",4(%Rsp)\n", + delta); xops[0] = DECL_RTL (function); -- cgit v1.1