diff options
author | Mark Kettenis <kettenis@gnu.org> | 2003-08-22 09:49:01 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2003-08-22 09:49:01 +0000 |
commit | 7e6d0ac8cf0eaa6ada55d45ceae22713e2e98e69 (patch) | |
tree | d6f9e79de0454a86288553ce9b36ed0c220dacfa /gdb/reggroups.c | |
parent | 72e5f48470f61a7185897e0c7147d2ae5fa9fde1 (diff) | |
download | gdb-7e6d0ac8cf0eaa6ada55d45ceae22713e2e98e69.zip gdb-7e6d0ac8cf0eaa6ada55d45ceae22713e2e98e69.tar.gz gdb-7e6d0ac8cf0eaa6ada55d45ceae22713e2e98e69.tar.bz2 |
* reggroups.c: Add whitespace after declarations of local
variables in functions.
Diffstat (limited to 'gdb/reggroups.c')
-rw-r--r-- | gdb/reggroups.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/reggroups.c b/gdb/reggroups.c index 7000957..7dd0562 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. */ |