Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: "Maciej W. Rozycki" <macro@mips.com>
To: Daniel Jacobowitz <drow@false.org>
Cc: gdb-patches@sourceware.org, "Maciej W. Rozycki" <macro@linux-mips.org>
Subject: Re: mips-tdep.c: Style fixes
Date: Wed, 18 Apr 2007 08:31:00 -0000	[thread overview]
Message-ID: <Pine.LNX.4.61.0704180902090.28492@perivale.mips.com> (raw)
In-Reply-To: <20070417191838.GA13068@caradoc.them.org>

On Tue, 17 Apr 2007, Daniel Jacobowitz wrote:

> >  I can revert these, no problem
> 
> Please do.

 Done now:

2007-04-18  Maciej W. Rozycki  <macro@mips.com>

	* mips-tdep.c (mips_eabi_push_dummy_call): Revert the last
	change to rearrange some brackets.
	(mips_n32n64_push_dummy_call): Likewise.
	(mips_o32_push_dummy_call): Likewise.
	(mips_o64_push_dummy_call): Likewise.

> > -- it just looks strange and is not useful 
> > from the language's point of view to have the right-hand side of an 
> > assignment in brackets.  OTOH, this qualifies as a workaround for what 
> > should probably be considered a bug in the respective tools, so perhaps 
> > those should be fixed instead?
> 
> Maybe, but I'm not about to suggest changes to GNU formatting at this
> date :-)

 OK -- the question is whether this is a bug in software not doing the GNU 
formatting correctly or whether it is our code that diverges.

  Maciej

Index: gdb/mips-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/mips-tdep.c,v
retrieving revision 1.413
diff -u -p -r1.413 mips-tdep.c
--- gdb/mips-tdep.c	17 Apr 2007 17:57:03 -0000	1.413
+++ gdb/mips-tdep.c	18 Apr 2007 08:17:05 -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",
@@ -2873,8 +2873,8 @@ mips_n32n64_push_dummy_call (struct gdba
 		      && partial_len < mips_abi_regsize (gdbarch)
 		      && (typecode == TYPE_CODE_STRUCT
 			  || typecode == TYPE_CODE_UNION))
-		    regval <<= (mips_abi_regsize (gdbarch) - partial_len)
-			       * TARGET_CHAR_BIT;
+		    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",
@@ -3308,8 +3308,8 @@ mips_o32_push_dummy_call (struct gdbarch
 		      && partial_len < mips_abi_regsize (gdbarch)
 		      && (typecode == TYPE_CODE_STRUCT
 			  || typecode == TYPE_CODE_UNION))
-		    regval <<= (mips_abi_regsize (gdbarch) - partial_len)
-			       * TARGET_CHAR_BIT;
+		    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",
@@ -3752,8 +3752,8 @@ mips_o64_push_dummy_call (struct gdbarch
 		      && partial_len < mips_abi_regsize (gdbarch)
 		      && (typecode == TYPE_CODE_STRUCT
 			  || typecode == TYPE_CODE_UNION))
-		    regval <<= (mips_abi_regsize (gdbarch) - partial_len)
-			       * TARGET_CHAR_BIT;
+		    regval <<= ((mips_abi_regsize (gdbarch) - partial_len)
+				* TARGET_CHAR_BIT);
 
 		  if (mips_debug)
 		    fprintf_filtered (gdb_stdlog, " - reg=%d val=%s",


  reply	other threads:[~2007-04-18  8:24 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-04-17 18:03 Maciej W. Rozycki
2007-04-17 18:13 ` Daniel Jacobowitz
2007-04-17 18:57   ` Maciej W. Rozycki
2007-04-17 19:18     ` Andreas Schwab
2007-04-17 20:39     ` Daniel Jacobowitz
2007-04-18  8:31       ` Maciej W. Rozycki [this message]
2007-04-17 20:45     ` Michael Snyder

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Pine.LNX.4.61.0704180902090.28492@perivale.mips.com \
    --to=macro@mips.com \
    --cc=drow@false.org \
    --cc=gdb-patches@sourceware.org \
    --cc=macro@linux-mips.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox