aboutsummaryrefslogtreecommitdiff
path: root/gdb/python
diff options
context:
space:
mode:
authorAndrew Burgess <aburgess@redhat.com>2022-03-31 18:10:34 +0100
committerAndrew Burgess <aburgess@redhat.com>2022-04-07 16:01:18 +0100
commitaf7ce09b7685050d2ca1a8a746bb8a8c080fff69 (patch)
tree7f98b85a0c9b02742561f15e09fb66063b0a439f /gdb/python
parentc30c0f062e52b7a827d8571cdafcd04c9e71ab6b (diff)
downloadgdb-af7ce09b7685050d2ca1a8a746bb8a8c080fff69.zip
gdb-af7ce09b7685050d2ca1a8a746bb8a8c080fff69.tar.gz
gdb-af7ce09b7685050d2ca1a8a746bb8a8c080fff69.tar.bz2
gdb: move struct reggroup into reggroups.h header
Move 'struct reggroup' into the reggroups.h header. Remove the reggroup_name and reggroup_type accessor functions, and just use the name/type member functions within 'struct reggroup', update all uses of these removed functions. There should be no user visible changes after this commit.
Diffstat (limited to 'gdb/python')
-rw-r--r--gdb/python/py-registers.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/python/py-registers.c b/gdb/python/py-registers.c
index 6255dda..bbb322f 100644
--- a/gdb/python/py-registers.c
+++ b/gdb/python/py-registers.c
@@ -136,8 +136,7 @@ gdbpy_reggroup_to_string (PyObject *self)
reggroup_object *group = (reggroup_object *) self;
const reggroup *reggroup = group->reggroup;
- const char *name = reggroup_name (reggroup);
- return PyUnicode_FromString (name);
+ return PyUnicode_FromString (reggroup->name ());
}
/* Implement gdb.RegisterGroup.name (self) -> String.