Remove tui_data_item_window::value
authorTom Tromey <tom@tromey.com>
Sat, 13 Jul 2019 21:55:48 +0000 (15:55 -0600)
committerTom Tromey <tom@tromey.com>
Tue, 20 Aug 2019 22:22:05 +0000 (16:22 -0600)
The field tui_data_item_window::value is not used, so remove it.

gdb/ChangeLog
2019-08-20  Tom Tromey  <tom@tromey.com>

* tui/tui-regs.h (struct tui_data_item_window) <value>: Remove
field.
* tui/tui-regs.c (~tui_data_item_window): Update.

gdb/ChangeLog
gdb/tui/tui-regs.c
gdb/tui/tui-regs.h

index 346cc35..b4108d9 100644 (file)
@@ -1,5 +1,11 @@
 2019-08-20  Tom Tromey  <tom@tromey.com>
 
+       * tui/tui-regs.h (struct tui_data_item_window) <value>: Remove
+       field.
+       * tui/tui-regs.c (~tui_data_item_window): Update.
+
+2019-08-20  Tom Tromey  <tom@tromey.com>
+
        * tui/tui-regs.c (tui_register_format, tui_get_register): Move
        earlier.
 
index 9ea6e72..aebea49 100644 (file)
@@ -103,7 +103,6 @@ tui_get_register (struct frame_info *frame,
 
 tui_data_item_window::~tui_data_item_window ()
 {
-  xfree (value);
   xfree (content);
 }
 
index 7b0bb50..d54b556 100644 (file)
@@ -38,7 +38,6 @@ struct tui_data_item_window : public tui_gen_win_info
   const char *name = nullptr;
   /* The register number, or data display number.  */
   int item_no = -1;
-  void *value = nullptr;
   bool highlight = false;
   char *content = nullptr;
 };