summaryrefslogtreecommitdiff
path: root/gdb/mips-tdep.c
diff options
context:
space:
mode:
authorMaciej W. Rozycki <macro@linux-mips.org>2007-05-17 13:28:55 +0000
committerMaciej W. Rozycki <macro@linux-mips.org>2007-05-17 13:28:55 +0000
commit436aafc4d11edd36a19e1d2e1d89b1fc7ad41300 (patch)
treea68dc86bd57115419684b4e20bd151a1d27ce965 /gdb/mips-tdep.c
parentc210d850a759f30fc747edbcb16dff83228c4948 (diff)
downloadbinutils-gdb-436aafc4d11edd36a19e1d2e1d89b1fc7ad41300.tar.gz
* mips-tdep.c (mips_n32n64_push_dummy_call): Fix and reformat a
comment. (mips_o64_push_dummy_call): Reformat a comment.
Diffstat (limited to 'gdb/mips-tdep.c')
-rw-r--r--gdb/mips-tdep.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c
index 7998ca701f1..06d1876c21f 100644
--- a/gdb/mips-tdep.c
+++ b/gdb/mips-tdep.c
@@ -2736,10 +2736,9 @@ mips_n32n64_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
register-sized pieces. Large arguments are split between
registers and stack. */
/* Note: structs whose size is not a multiple of MIPS64_REGSIZE
- mips_abi_regsize() are treated specially: Irix cc passes
- them in registers where gcc sometimes puts them on the
- stack. For maximum compatibility, we will put them in
- both places. */
+ are treated specially: Irix cc passes them in registers
+ where gcc sometimes puts them on the stack. For maximum
+ compatibility, we will put them in both places. */
int odd_sized_struct = (len > MIPS64_REGSIZE
&& len % MIPS64_REGSIZE != 0);
/* Note: Floating-point values that didn't fit into an FP
@@ -3535,10 +3534,9 @@ mips_o64_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
register-sized pieces. Large arguments are split between
registers and stack. */
/* Note: structs whose size is not a multiple of MIPS64_REGSIZE
- are treated specially: Irix cc passes
- them in registers where gcc sometimes puts them on the
- stack. For maximum compatibility, we will put them in
- both places. */
+ are treated specially: Irix cc passes them in registers
+ where gcc sometimes puts them on the stack. For maximum
+ compatibility, we will put them in both places. */
int odd_sized_struct = (len > MIPS64_REGSIZE
&& len % MIPS64_REGSIZE != 0);
while (len > 0)