aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2024-10-09 15:31:11 -0600
committerTom Tromey <tom@tromey.com>2024-12-03 18:42:57 -0700
commit0c57d55c4479231bd63d6623d1bfbcb340ffdb20 (patch)
tree8cfefe535736f9e280bc6b8a21c1f01425c28ec4 /gdb
parente69d35f45e050058b5f66c635999407e4aef508f (diff)
downloadbinutils-0c57d55c4479231bd63d6623d1bfbcb340ffdb20.zip
binutils-0c57d55c4479231bd63d6623d1bfbcb340ffdb20.tar.gz
binutils-0c57d55c4479231bd63d6623d1bfbcb340ffdb20.tar.bz2
Fix "maint print" error messages
While working on an earlier patch, I noticed that all the register-related "maint print" commands used the wrong command name in an error message. This fixes them. Reviewed-by: Christina Schimpe <christina.schimpe@intel.com> Approved-By: Andrew Burgess <aburgess@redhat.com>
Diffstat (limited to 'gdb')
-rw-r--r--gdb/regcache-dump.c23
1 files changed, 16 insertions, 7 deletions
diff --git a/gdb/regcache-dump.c b/gdb/regcache-dump.c
index 9be694d..037a232 100644
--- a/gdb/regcache-dump.c
+++ b/gdb/regcache-dump.c
@@ -245,8 +245,14 @@ enum regcache_dump_what
regcache_dump_remote
};
+/* Helper for the various maint commands that print registers. ARGS
+ is the arguments passed to the command. WHAT_TO_DUMP indicates
+ exactly which registers to display. COMMAND is the command name,
+ used in error messages. */
+
static void
-regcache_print (const char *args, enum regcache_dump_what what_to_dump)
+regcache_print (const char *args, enum regcache_dump_what what_to_dump,
+ const char *command)
{
/* Where to send output. */
stdio_file file;
@@ -255,7 +261,7 @@ regcache_print (const char *args, enum regcache_dump_what what_to_dump)
if (args != nullptr)
{
if (!file.open (args, "w"))
- perror_with_name (_("maintenance print architecture"));
+ perror_with_name (command);
redirect.emplace (current_uiout, &file);
}
@@ -310,31 +316,34 @@ regcache_print (const char *args, enum regcache_dump_what what_to_dump)
static void
maintenance_print_registers (const char *args, int from_tty)
{
- regcache_print (args, regcache_dump_none);
+ regcache_print (args, regcache_dump_none, "maintenance print registers");
}
static void
maintenance_print_raw_registers (const char *args, int from_tty)
{
- regcache_print (args, regcache_dump_raw);
+ regcache_print (args, regcache_dump_raw, "maintenance print raw-registers");
}
static void
maintenance_print_cooked_registers (const char *args, int from_tty)
{
- regcache_print (args, regcache_dump_cooked);
+ regcache_print (args, regcache_dump_cooked,
+ "maintenance print cooked-registers");
}
static void
maintenance_print_register_groups (const char *args, int from_tty)
{
- regcache_print (args, regcache_dump_groups);
+ regcache_print (args, regcache_dump_groups,
+ "maintenance print register-groups");
}
static void
maintenance_print_remote_registers (const char *args, int from_tty)
{
- regcache_print (args, regcache_dump_remote);
+ regcache_print (args, regcache_dump_remote,
+ "maintenance print remote-registers");
}
void _initialize_regcache_dump ();