* mips-tdep.c (mips_eabi_push_dummy_call): Rearrange some
authorMaciej W. Rozycki <macro@linux-mips.org>
Tue, 17 Apr 2007 17:57:03 +0000 (17:57 +0000)
committerMaciej W. Rozycki <macro@linux-mips.org>
Tue, 17 Apr 2007 17:57:03 +0000 (17:57 +0000)
brackets.
(mips_n32n64_push_dummy_call): Likewise.  Reformat some
expressions.
(mips_o32_push_dummy_call): Likewise.
(mips_o64_push_dummy_call): Likewise.

gdb/ChangeLog
gdb/mips-tdep.c

index 45e1a75b55300130ba7368c225c16232dc9eba32..dff52025ecdc75311d0736ffa3dc3a84c5daa203 100644 (file)
@@ -1,3 +1,12 @@
+2007-04-17  Maciej W. Rozycki  <macro@mips.com>
+
+       * 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.
+
 2007-04-17  Maciej W. Rozycki  <macro@mips.com>
 
        * mips-tdep.c (mips_n32n64_push_dummy_call): Fix a typo in a
index b3d9d4b247cf88f6166aa3f1cf9506560c89e349..1230a7eb90f220a8c5ef9ddb261d70f2035f2757 100644 (file)
@@ -2558,8 +2558,8 @@ mips_eabi_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
            {
              /* 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 gdbarch *gdbarch, struct value *function,
            {
              /* 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 gdbarch *gdbarch, struct value *function,
 
                  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 *gdbarch, struct value *function,
            {
              /* 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 *gdbarch, struct value *function,
                  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 *gdbarch, struct value *function,
            {
              /* 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 *gdbarch, struct value *function,
 
                  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",
This page took 0.030834 seconds and 4 git commands to generate.