* reggroups.c: Add whitespace after declarations of local
authorMark Kettenis <kettenis@gnu.org>
Fri, 22 Aug 2003 09:49:01 +0000 (09:49 +0000)
committerMark Kettenis <kettenis@gnu.org>
Fri, 22 Aug 2003 09:49:01 +0000 (09:49 +0000)
variables in functions.

gdb/ChangeLog
gdb/reggroups.c

index d410a3ba9469d59235b7f99625ba50c2701ceb4b..85786b653a4ae3fd218dfcc4d33fd2e5f0343b99 100644 (file)
@@ -1,3 +1,8 @@
+2003-08-22  Mark Kettenis  <kettenis@gnu.org>
+
+       * reggroups.c: Add whitespace after declarations of local
+       variables in functions.
+
 2003-08-21  Michael Chastain  <mec@shout.net>
 
        * gdbtypes.h: Change array bound type from an int to enum.
index 70009577818e636fa99db76554d7a3bfe02a0304..7dd05628519dde3ae72f454c71c328f121923bfa 100644 (file)
@@ -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.  */
This page took 0.031154 seconds and 4 git commands to generate.