aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorJim Blandy <jimb@codesourcery.com>2004-05-20 18:49:37 +0000
committerJim Blandy <jimb@codesourcery.com>2004-05-20 18:49:37 +0000
commitc2b6b4aad9acb1450ded9d88f1d84f9f8da05964 (patch)
tree0db888e1edc67620c23715f204a5261239e08bfc /gdb
parent144529d0d22409ef28eaf39c25767f817d017fdd (diff)
downloadgdb-c2b6b4aad9acb1450ded9d88f1d84f9f8da05964.zip
gdb-c2b6b4aad9acb1450ded9d88f1d84f9f8da05964.tar.gz
gdb-c2b6b4aad9acb1450ded9d88f1d84f9f8da05964.tar.bz2
* rs6000-tdep.c (rs6000_push_dummy_call): Formatting fixes.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/rs6000-tdep.c12
2 files changed, 11 insertions, 5 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index dbf56dc..887bcd5 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2004-05-20 Jim Blandy <jimb@redhat.com>
+
+ * rs6000-tdep.c (rs6000_push_dummy_call): Formatting fixes.
+
2004-05-20 Mark Kettenis <kettenis@gnu.org>
* regset.h: Make prototype const-correct.
diff --git a/gdb/rs6000-tdep.c b/gdb/rs6000-tdep.c
index b6695b5..9a318fe 100644
--- a/gdb/rs6000-tdep.c
+++ b/gdb/rs6000-tdep.c
@@ -1318,8 +1318,8 @@ rs6000_push_dummy_call (struct gdbarch *gdbarch, CORE_ADDR func_addr,
there is no way we would run out of them. */
if (len > 8)
- printf_unfiltered (
- "Fatal Error: a floating point parameter #%d with a size > 8 is found!\n", argno);
+ printf_unfiltered ("Fatal Error: a floating point parameter "
+ "#%d with a size > 8 is found!\n", argno);
memcpy (&deprecated_registers[DEPRECATED_REGISTER_BYTE
(tdep->ppc_fp0_regnum + 1 + f_argno)],
@@ -1432,8 +1432,8 @@ ran_out_of_registers_for_arguments:
{
if (len > 8)
- printf_unfiltered (
- "Fatal Error: a floating point parameter #%d with a size > 8 is found!\n", argno);
+ printf_unfiltered ("Fatal Error: a floating point parameter"
+ " #%d with a size > 8 is found!\n", argno);
memcpy (&(deprecated_registers
[DEPRECATED_REGISTER_BYTE
@@ -1443,7 +1443,9 @@ ran_out_of_registers_for_arguments:
++f_argno;
}
- write_memory (sp + 24 + (ii * 4), (char *) VALUE_CONTENTS (arg), len);
+ write_memory (sp + 24 + (ii * 4),
+ (char *) VALUE_CONTENTS (arg),
+ len);
ii += ((len + 3) & -4) / 4;
}
}