diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2007-04-18 08:22:33 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2007-04-18 08:22:33 +0000 |
commit | 9ecf7166d24755752a87c979c910b67baf556fdb (patch) | |
tree | 7bec5c5b3e74d372d88073a51449ac86f2ac65d5 /gdb/mips-tdep.c | |
parent | b79599ff1ea3f61a10af0c620e129fd52d3c2376 (diff) | |
download | gdb-9ecf7166d24755752a87c979c910b67baf556fdb.zip gdb-9ecf7166d24755752a87c979c910b67baf556fdb.tar.gz gdb-9ecf7166d24755752a87c979c910b67baf556fdb.tar.bz2 |
* 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.
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r-- | gdb/mips-tdep.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 1230a7e..1dae36b 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", @@ -2873,8 +2873,8 @@ mips_n32n64_push_dummy_call (struct gdbarch *gdbarch, struct value *function, && 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 *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", @@ -3308,8 +3308,8 @@ mips_o32_push_dummy_call (struct gdbarch *gdbarch, struct value *function, && 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 *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", @@ -3752,8 +3752,8 @@ mips_o64_push_dummy_call (struct gdbarch *gdbarch, struct value *function, && 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", |