diff options
author | Mark Kettenis <kettenis@gnu.org> | 2012-04-09 09:16:58 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2012-04-09 09:16:58 +0000 |
commit | fb57d4525b04b5fc28dc98c6034aa5c667bbbc71 (patch) | |
tree | e899a11d581658652340ef2e33866d3e1313e532 /gdb | |
parent | 050396e533308f4d1c6ed55105a81eff1f402b9f (diff) | |
download | gdb-fb57d4525b04b5fc28dc98c6034aa5c667bbbc71.zip gdb-fb57d4525b04b5fc28dc98c6034aa5c667bbbc71.tar.gz gdb-fb57d4525b04b5fc28dc98c6034aa5c667bbbc71.tar.bz2 |
* sparc64-tdep.c (sparc64_store_arguments)
(sparc64_store_arguments): Fix coding style.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/sparc64-tdep.c | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 36a737b..6e167a6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2012-04-09 Mark Kettenis <kettenis@gnu.org> + + * sparc64-tdep.c (sparc64_store_arguments) + (sparc64_store_arguments): Fix coding style. + 2012-04-07 Mark Kettenis <kettenis@gnu.org> * sparc64-tdep.c (sparc64_store_arguments): Fix handling of diff --git a/gdb/sparc64-tdep.c b/gdb/sparc64-tdep.c index 62f168d..f30022e 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); |