diff options
Diffstat (limited to 'gdb/reggroups.c')
-rw-r--r-- | gdb/reggroups.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/reggroups.c b/gdb/reggroups.c index 90bcb8e..5727921 100644 --- a/gdb/reggroups.c +++ b/gdb/reggroups.c @@ -159,8 +159,8 @@ default_register_reggroup_p (struct gdbarch *gdbarch, int regnum, int float_p; int raw_p; - if (REGISTER_NAME (regnum) == NULL - || *REGISTER_NAME (regnum) == '\0') + if (gdbarch_register_name (current_gdbarch, regnum) == NULL + || *gdbarch_register_name (current_gdbarch, regnum) == '\0') return 0; if (group == all_reggroup) return 1; |