summaryrefslogtreecommitdiff
path: root/gdb/reggroups.c
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2003-08-22 09:49:01 +0000
committerMark Kettenis <kettenis@gnu.org>2003-08-22 09:49:01 +0000
commit74f2165200d535735e15fad6a1585ba8a42e18c2 (patch)
tree7733ffd89d125ea2a774738af6462fe195400531 /gdb/reggroups.c
parent2e594efb928344ac8c0d3e424e3c69f75692762c (diff)
downloadgdb-74f2165200d535735e15fad6a1585ba8a42e18c2.tar.gz
* reggroups.c: Add whitespace after declarations of local
variables in functions.
Diffstat (limited to 'gdb/reggroups.c')
-rw-r--r--gdb/reggroups.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/reggroups.c b/gdb/reggroups.c
index 70009577818..7dd05628519 100644
--- a/gdb/reggroups.c
+++ b/gdb/reggroups.c
@@ -1,6 +1,6 @@
/* Register groupings for GDB, the GNU debugger.
- Copyright 2002 Free Software Foundation, Inc.
+ Copyright 2002, 2003 Free Software Foundation, Inc.
Contributed by Red Hat.
@@ -103,6 +103,7 @@ void
reggroup_add (struct gdbarch *gdbarch, struct reggroup *group)
{
struct reggroups *groups = gdbarch_data (gdbarch, reggroups_data);
+
if (groups == NULL)
{
/* ULGH, called during architecture initialization. Patch
@@ -125,6 +126,7 @@ reggroup_next (struct gdbarch *gdbarch, struct reggroup *last)
{
struct reggroups *groups;
struct reggroup_el *el;
+
/* Don't allow this function to be called during architecture
creation. If there are no groups, use the default groups list. */
groups = gdbarch_data (gdbarch, reggroups_data);
@@ -156,6 +158,7 @@ default_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
int vector_p;
int float_p;
int raw_p;
+
if (REGISTER_NAME (regnum) == NULL
|| *REGISTER_NAME (regnum) == '\0')
return 0;
@@ -183,6 +186,7 @@ static void
reggroups_dump (struct gdbarch *gdbarch, struct ui_file *file)
{
struct reggroup *group = NULL;
+
do
{
/* Group name. */