Fix crash with "maint print arc"
authorTom Tromey <tom@tromey.com>
Fri, 27 May 2022 13:52:16 +0000 (07:52 -0600)
committerTom Tromey <tom@tromey.com>
Fri, 27 May 2022 13:52:16 +0000 (07:52 -0600)
Luis noticed that "maint print arc" would crash, because the command
handler did not find "show" in the command name, violating an
invariant.  This patch fixes the bug by changing the registration to
use add_basic_prefix_cmd instead.

gdb/arc-tdep.c

index 98bd1c4bc0a6ea775bc7767bfe671233a5f9c3c8..3edfd466f3b90e3003c203e51a83ed54d48eedde 100644 (file)
@@ -2474,11 +2474,11 @@ _initialize_arc_tdep ()
   /* Register ARC-specific commands with gdb.  */
 
   /* Add root prefix command for "maintenance print arc" commands.  */
-  add_show_prefix_cmd ("arc", class_maintenance,
-                      _("ARC-specific maintenance commands for printing GDB "
-                        "internal state."),
-                      &maintenance_print_arc_list,
-                      0, &maintenanceprintlist);
+  add_basic_prefix_cmd ("arc", class_maintenance,
+                       _("ARC-specific maintenance commands for printing GDB "
+                         "internal state."),
+                       &maintenance_print_arc_list,
+                       0, &maintenanceprintlist);
 
   add_cmd ("arc-instruction", class_maintenance,
           dump_arc_instruction_command,