From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jim Blandy To: gdb-patches@sources.redhat.com Subject: PATCH: fix up formatting in rs6000-tdep.c Date: Thu, 20 May 2004 18:50:00 -0000 Message-id: X-SW-Source: 2004-05/msg00614.html 2004-05-20 Jim Blandy * rs6000-tdep.c (rs6000_push_dummy_call): Formatting fixes. *** gdb/rs6000-tdep.c.~1.206.~ 2004-05-19 00:41:44.000000000 -0500 --- gdb/rs6000-tdep.c 2004-05-20 13:37:07.000000000 -0500 *************** rs6000_push_dummy_call (struct gdbarch * *** 1318,1325 **** there is no way we would run out of them. */ if (len > 8) ! printf_unfiltered ( ! "Fatal Error: a floating point parameter #%d with a size > 8 is found!\n", argno); memcpy (&deprecated_registers[DEPRECATED_REGISTER_BYTE (tdep->ppc_fp0_regnum + 1 + f_argno)], --- 1318,1325 ---- there is no way we would run out of them. */ if (len > 8) ! printf_unfiltered ("Fatal Error: a floating point parameter " ! "#%d with a size > 8 is found!\n", argno); memcpy (&deprecated_registers[DEPRECATED_REGISTER_BYTE (tdep->ppc_fp0_regnum + 1 + f_argno)], *************** ran_out_of_registers_for_arguments: *** 1432,1439 **** { if (len > 8) ! printf_unfiltered ( ! "Fatal Error: a floating point parameter #%d with a size > 8 is found!\n", argno); memcpy (&(deprecated_registers [DEPRECATED_REGISTER_BYTE --- 1432,1439 ---- { if (len > 8) ! printf_unfiltered ("Fatal Error: a floating point parameter" ! " #%d with a size > 8 is found!\n", argno); memcpy (&(deprecated_registers [DEPRECATED_REGISTER_BYTE *************** ran_out_of_registers_for_arguments: *** 1443,1449 **** ++f_argno; } ! write_memory (sp + 24 + (ii * 4), (char *) VALUE_CONTENTS (arg), len); ii += ((len + 3) & -4) / 4; } } --- 1443,1451 ---- ++f_argno; } ! write_memory (sp + 24 + (ii * 4), ! (char *) VALUE_CONTENTS (arg), ! len); ii += ((len + 3) & -4) / 4; } }