mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 22:48:57 +08:00
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.
This commit is contained in:
@ -196,8 +196,7 @@ protected:
|
||||
{
|
||||
if (gdbarch_register_reggroup_p (m_gdbarch, regnum, group))
|
||||
{
|
||||
gdb_printf (file,
|
||||
"%s%s", sep, reggroup_name (group));
|
||||
gdb_printf (file, "%s%s", sep, group->name ());
|
||||
sep = ",";
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user