diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-08-04 20:34:10 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-08-04 20:34:10 +0000 |
commit | 6c7d17ba3a5d982ae1c2b972417aedce0f404cf5 (patch) | |
tree | 2608b73719576cc5a6c1aa63742969c4ded95f3c /gdb/ChangeLog | |
parent | 95cd630eaeeb7c59acb5129df8a18b808dfabe23 (diff) | |
download | gdb-6c7d17ba3a5d982ae1c2b972417aedce0f404cf5.zip gdb-6c7d17ba3a5d982ae1c2b972417aedce0f404cf5.tar.gz gdb-6c7d17ba3a5d982ae1c2b972417aedce0f404cf5.tar.bz2 |
2003-08-04 Andrew Cagney <cagney@redhat.com>
* reggroups.c (struct reggroup_el): Define.
(struct reggroups): Delete field "nr_group". Replace array
"group" with a "first" to "last" linked list.
(reggroups_init): Update. Allocate using gdbarch's obstack.
(reggroups_free): Delete function.
(add_group): Update. Add "el" parameter.
(reggroup_add): Pass gdbarch obstack allocated space to add_group.
(default_groups): Update.
(reggroup_next): Replace reggroups.
(reggroups_dump): Update.
(_initialize_reggroup): Pass XMALLOC allocated space to add_group.
* regcache.c (regcache_dump): Use reggroup_next instead of reggroups.
* infcmd.c (registers_info): Use reggroup_next instead of reggroups.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 407553d..32fe0d9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,19 @@ +2003-08-04 Andrew Cagney <cagney@redhat.com> + + * reggroups.c (struct reggroup_el): Define. + (struct reggroups): Delete field "nr_group". Replace array + "group" with a "first" to "last" linked list. + (reggroups_init): Update. Allocate using gdbarch's obstack. + (reggroups_free): Delete function. + (add_group): Update. Add "el" parameter. + (reggroup_add): Pass gdbarch obstack allocated space to add_group. + (default_groups): Update. + (reggroup_next): Replace reggroups. + (reggroups_dump): Update. + (_initialize_reggroup): Pass XMALLOC allocated space to add_group. + * regcache.c (regcache_dump): Use reggroup_next instead of reggroups. + * infcmd.c (registers_info): Use reggroup_next instead of reggroups. + 2003-08-04 Daniel Jacobowitz <drow@mvista.com> * Makefile.in (tui-interp.o): Update dependencies. |