summaryrefslogtreecommitdiff
path: root/gdb/sparc64-tdep.c
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2012-04-09 09:16:55 +0000
committerMark Kettenis <kettenis@gnu.org>2012-04-09 09:16:55 +0000
commita62c8d49a36b5b5c884b3a7bbe4dc0617f5de89d (patch)
treef16a3b4c499048c757fabc52f49a447b18f1a3cf /gdb/sparc64-tdep.c
parent3d58b67aaf7807c8677dc94af022a49a0d2f65d1 (diff)
downloadgdb-a62c8d49a36b5b5c884b3a7bbe4dc0617f5de89d.tar.gz
* sparc64-tdep.c (sparc64_store_arguments)
(sparc64_store_arguments): Fix coding style.
Diffstat (limited to 'gdb/sparc64-tdep.c')
-rw-r--r--gdb/sparc64-tdep.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/sparc64-tdep.c b/gdb/sparc64-tdep.c
index 62f168d6ace..f30022ecf90 100644
--- a/gdb/sparc64-tdep.c
+++ b/gdb/sparc64-tdep.c
@@ -785,8 +785,8 @@ sparc64_store_arguments (struct regcache *regcache, int nargs,
struct type *type = value_type (args[i]);
int len = TYPE_LENGTH (type);
- if (sparc64_structure_or_union_p (type) ||
- (sparc64_complex_floating_p (type) && len == 32))
+ if (sparc64_structure_or_union_p (type)
+ || (sparc64_complex_floating_p (type) && len == 32))
{
/* Structure or Union arguments. */
if (len <= 16)
@@ -887,8 +887,8 @@ sparc64_store_arguments (struct regcache *regcache, int nargs,
int regnum = -1;
gdb_byte buf[16];
- if (sparc64_structure_or_union_p (type) ||
- (sparc64_complex_floating_p (type) && len == 32))
+ if (sparc64_structure_or_union_p (type)
+ || (sparc64_complex_floating_p (type) && len == 32))
{
/* Structure or Union arguments. */
gdb_assert (len <= 16);