diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2007-04-17 17:57:03 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2007-04-17 17:57:03 +0000 |
commit | 06f9a1af70ed2722e575203073271ae39c071def (patch) | |
tree | 787343a69d4bff702476715118ee7bf506a38a36 /gdb | |
parent | ad018eeeb91ea7b88219a66552d0f3220b01ea6c (diff) | |
download | gdb-06f9a1af70ed2722e575203073271ae39c071def.zip gdb-06f9a1af70ed2722e575203073271ae39c071def.tar.gz gdb-06f9a1af70ed2722e575203073271ae39c071def.tar.bz2 |
* 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.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 9 | ||||
-rw-r--r-- | gdb/mips-tdep.c | 40 |
2 files changed, 29 insertions, 20 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 45e1a75..dff5202 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,14 @@ 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 comment. diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index b3d9d4b..1230a7e 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -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", |