gdb: change jit_debug to a bool
authorSimon Marchi <simon.marchi@polymtl.ca>
Mon, 11 Jan 2021 21:18:48 +0000 (16:18 -0500)
committerSimon Marchi <simon.marchi@polymtl.ca>
Mon, 11 Jan 2021 21:18:48 +0000 (16:18 -0500)
gdb/ChangeLog:

* jit.c (jit_debug): Change type to bool.
(_initialize_jit): Adjust.

Change-Id: Ic2b1eec28eafe8ccb2899f38ddc91ba9703cb38e

gdb/ChangeLog
gdb/jit.c

index fbf7c9f6fa771222c84f36f55126f9ef714dc61f..8af2be62f7eb13c79f557c7b0ae5bd8de659349c 100644 (file)
@@ -1,3 +1,8 @@
+2021-01-11  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * jit.c (jit_debug): Change type to bool.
+       (_initialize_jit): Adjust.
+
 2021-01-09  Tom Tromey  <tom@tromey.com>
 
        PR compile/23672
index ad951cdfbb52f8ee42ad22da0d377803dfb5702b..474ba838b86bc4c965b9c2f72eae583ecb79b925 100644 (file)
--- a/gdb/jit.c
+++ b/gdb/jit.c
@@ -58,9 +58,9 @@ static void jit_inferior_exit_hook (struct inferior *inf);
 
 static struct gdbarch_data *jit_gdbarch_data;
 
-/* Non-zero if we want to see trace of jit level stuff.  */
+/* True if we want to see trace of jit level stuff.  */
 
-static unsigned int jit_debug = 0;
+static bool jit_debug = false;
 
 static void
 show_jit_debug (struct ui_file *file, int from_tty,
@@ -1251,13 +1251,13 @@ _initialize_jit ()
 {
   jit_reader_dir = relocate_gdb_directory (JIT_READER_DIR,
                                           JIT_READER_DIR_RELOCATABLE);
-  add_setshow_zuinteger_cmd ("jit", class_maintenance, &jit_debug,
-                            _("Set JIT debugging."),
-                            _("Show JIT debugging."),
-                            _("When non-zero, JIT debugging is enabled."),
-                            NULL,
-                            show_jit_debug,
-                            &setdebuglist, &showdebuglist);
+  add_setshow_boolean_cmd ("jit", class_maintenance, &jit_debug,
+                          _("Set JIT debugging."),
+                          _("Show JIT debugging."),
+                          _("When non-zero, JIT debugging is enabled."),
+                          NULL,
+                          show_jit_debug,
+                          &setdebuglist, &showdebuglist);
 
   gdb::observers::inferior_created.attach (jit_inferior_created_hook);
   gdb::observers::inferior_execd.attach (jit_inferior_created_hook);