From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29103 invoked by alias); 17 Apr 2007 17:57:29 -0000 Received: (qmail 29092 invoked by uid 22791); 17 Apr 2007 17:57:28 -0000 X-Spam-Check-By: sourceware.org Received: from dmz.mips-uk.com (HELO dmz.mips-uk.com) (194.74.144.194) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 17 Apr 2007 18:57:24 +0100 Received: from internal-mx1 ([192.168.192.240] helo=ukservices1.mips.com) by dmz.mips-uk.com with esmtp (Exim 3.35 #1 (Debian)) id 1Hdrve-0007Wa-00; Tue, 17 Apr 2007 18:57:22 +0100 Received: from perivale.mips.com ([192.168.192.200]) by ukservices1.mips.com with esmtp (Exim 3.36 #1 (Debian)) id 1HdrvR-0005ND-00; Tue, 17 Apr 2007 18:57:09 +0100 Received: from macro (helo=localhost) by perivale.mips.com with local-esmtp (Exim 4.63) (envelope-from ) id 1HdrvR-0008BS-Pz; Tue, 17 Apr 2007 18:57:09 +0100 Date: Tue, 17 Apr 2007 18:03:00 -0000 From: "Maciej W. Rozycki" To: gdb-patches@sourceware.org cc: "Maciej W. Rozycki" Subject: mips-tdep.c: Style fixes Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-MIPS-Technologies-UK-MailScanner: Found to be clean X-MIPS-Technologies-UK-MailScanner-From: macro@mips.com Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2007-04/txt/msg00264.txt.bz2 Hello, Applied as obvious: 2007-04-17 Maciej W. Rozycki * mips-tdep.c (mips_eabi_push_dummy_call): Rearrange some brackets. (mips_n32n64_push_dummy_call): Likewise. Reformat some expressions. (mips_o32_push_dummy_call): Likewise. (mips_o64_push_dummy_call): Likewise. Maciej Index: gdb/mips-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/mips-tdep.c,v retrieving revision 1.412 diff -u -p -r1.412 mips-tdep.c --- gdb/mips-tdep.c 17 Apr 2007 16:25:49 -0000 1.412 +++ gdb/mips-tdep.c 17 Apr 2007 16:26:24 -0000 @@ -2558,8 +2558,8 @@ mips_eabi_push_dummy_call (struct gdbarc { /* Remember if the argument was written to the stack. */ int stack_used_p = 0; - int partial_len = (len < mips_abi_regsize (gdbarch) - ? len : mips_abi_regsize (gdbarch)); + int partial_len = (len < mips_abi_regsize (gdbarch)) + ? len : mips_abi_regsize (gdbarch); if (mips_debug) fprintf_unfiltered (gdb_stdlog, " -- partial=%d", @@ -2785,8 +2785,8 @@ mips_n32n64_push_dummy_call (struct gdba { /* Remember if the argument was written to the stack. */ int stack_used_p = 0; - int partial_len = (len < mips_abi_regsize (gdbarch) - ? len : mips_abi_regsize (gdbarch)); + int partial_len = (len < mips_abi_regsize (gdbarch)) + ? len : mips_abi_regsize (gdbarch); if (mips_debug) fprintf_unfiltered (gdb_stdlog, " -- partial=%d", @@ -2871,10 +2871,10 @@ mips_n32n64_push_dummy_call (struct gdba if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG && partial_len < mips_abi_regsize (gdbarch) - && (typecode == TYPE_CODE_STRUCT || - typecode == TYPE_CODE_UNION)) - regval <<= ((mips_abi_regsize (gdbarch) - partial_len) * - TARGET_CHAR_BIT); + && (typecode == TYPE_CODE_STRUCT + || typecode == TYPE_CODE_UNION)) + regval <<= (mips_abi_regsize (gdbarch) - partial_len) + * TARGET_CHAR_BIT; if (mips_debug) fprintf_filtered (gdb_stdlog, " - reg=%d val=%s", @@ -3219,8 +3219,8 @@ mips_o32_push_dummy_call (struct gdbarch { /* Remember if the argument was written to the stack. */ int stack_used_p = 0; - int partial_len = (len < mips_abi_regsize (gdbarch) - ? len : mips_abi_regsize (gdbarch)); + int partial_len = (len < mips_abi_regsize (gdbarch)) + ? len : mips_abi_regsize (gdbarch); if (mips_debug) fprintf_unfiltered (gdb_stdlog, " -- partial=%d", @@ -3306,10 +3306,10 @@ mips_o32_push_dummy_call (struct gdbarch if (mips_abi_regsize (gdbarch) < 8 && TARGET_BYTE_ORDER == BFD_ENDIAN_BIG && partial_len < mips_abi_regsize (gdbarch) - && (typecode == TYPE_CODE_STRUCT || - typecode == TYPE_CODE_UNION)) - regval <<= ((mips_abi_regsize (gdbarch) - partial_len) * - TARGET_CHAR_BIT); + && (typecode == TYPE_CODE_STRUCT + || typecode == TYPE_CODE_UNION)) + regval <<= (mips_abi_regsize (gdbarch) - partial_len) + * TARGET_CHAR_BIT; if (mips_debug) fprintf_filtered (gdb_stdlog, " - reg=%d val=%s", @@ -3680,8 +3680,8 @@ mips_o64_push_dummy_call (struct gdbarch { /* Remember if the argument was written to the stack. */ int stack_used_p = 0; - int partial_len = (len < mips_abi_regsize (gdbarch) - ? len : mips_abi_regsize (gdbarch)); + int partial_len = (len < mips_abi_regsize (gdbarch)) + ? len : mips_abi_regsize (gdbarch); if (mips_debug) fprintf_unfiltered (gdb_stdlog, " -- partial=%d", @@ -3750,10 +3750,10 @@ mips_o64_push_dummy_call (struct gdbarch if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG && partial_len < mips_abi_regsize (gdbarch) - && (typecode == TYPE_CODE_STRUCT || - typecode == TYPE_CODE_UNION)) - regval <<= ((mips_abi_regsize (gdbarch) - partial_len) * - TARGET_CHAR_BIT); + && (typecode == TYPE_CODE_STRUCT + || typecode == TYPE_CODE_UNION)) + regval <<= (mips_abi_regsize (gdbarch) - partial_len) + * TARGET_CHAR_BIT; if (mips_debug) fprintf_filtered (gdb_stdlog, " - reg=%d val=%s",