Use bool for is_exec_point
authorTom Tromey <tom@tromey.com>
Sun, 23 Jun 2019 16:25:03 +0000 (10:25 -0600)
committerTom Tromey <tom@tromey.com>
Tue, 25 Jun 2019 13:48:49 +0000 (07:48 -0600)
This changes tui_source_element::is_exec_point to be a bool.  I looked
at also changing "has_break", but it turns out that this field is used
inconsistently (sometimes as flags and sometimes as a bool), and so
needs more invesstigation before it can be changed.

gdb/ChangeLog
2019-06-25  Tom Tromey  <tom@tromey.com>

* tui/tui-winsource.c (tui_clear_source_content)
(tui_source_window_base::set_is_exec_point_at): Update.
* tui/tui-source.c (tui_set_source_content_nil): Update.
* tui/tui-data.h (struct tui_source_element) <is_exec_point>: Now
a bool.
* tui/tui-data.c (init_content_element): Update.

gdb/ChangeLog
gdb/tui/tui-data.c
gdb/tui/tui-data.h
gdb/tui/tui-source.c
gdb/tui/tui-winsource.c

index 8519e46625ae3c5fa555282d372718d4b5257fc1..02d96d106b495a441fcf563d4b0756beb2c17e6c 100644 (file)
@@ -1,3 +1,12 @@
+2019-06-25  Tom Tromey  <tom@tromey.com>
+
+       * tui/tui-winsource.c (tui_clear_source_content)
+       (tui_source_window_base::set_is_exec_point_at): Update.
+       * tui/tui-source.c (tui_set_source_content_nil): Update.
+       * tui/tui-data.h (struct tui_source_element) <is_exec_point>: Now
+       a bool.
+       * tui/tui-data.c (init_content_element): Update.
+
 2019-06-25  Tom Tromey  <tom@tromey.com>
 
        * tui/tui-wingeneral.c (tui_gen_win_info::make_visible): Update.
index 881e5d592a60dc09615a74c7c153eda724fd69b5..5addd2d2ab02bfb819656ff769d3415424070030 100644 (file)
@@ -368,7 +368,7 @@ init_content_element (struct tui_win_element *element,
       element->which_element.source.line = NULL;
       element->which_element.source.line_or_addr.loa = LOA_LINE;
       element->which_element.source.line_or_addr.u.line_no = 0;
-      element->which_element.source.is_exec_point = FALSE;
+      element->which_element.source.is_exec_point = false;
       element->which_element.source.has_break = FALSE;
       break;
     default:
index 8ec5ddfc0ab818d77c7b389715758d07a32690bb..d89027b031ba027058a4fd86716465aedb5d9a18 100644 (file)
@@ -174,7 +174,7 @@ struct tui_source_element
 {
   char *line;
   struct tui_line_or_address line_or_addr;
-  int is_exec_point;
+  bool is_exec_point;
   int has_break;
 };
 
index e1448dbd96138e89b1925e8bae9f60175867e94b..54e4e1be903efdcd9a5cc8399f4be985d78b29e3 100644 (file)
@@ -244,7 +244,7 @@ tui_set_source_content_nil (struct tui_win_info *win_info,
 
       element->which_element.source.line_or_addr.loa = LOA_LINE;
       element->which_element.source.line_or_addr.u.line_no = 0;
-      element->which_element.source.is_exec_point = FALSE;
+      element->which_element.source.is_exec_point = false;
       element->which_element.source.has_break = FALSE;
 
       /* Set the contents of the line to blank.  */
index 204fee13be960cb81284225cce6be21408834728..f30c3d67632d942b7545cb13dfdce6c280a3f69e 100644 (file)
@@ -218,7 +218,7 @@ tui_clear_source_content (struct tui_win_info *win_info,
          struct tui_win_element *element = win_info->content[i];
 
          element->which_element.source.has_break = FALSE;
-         element->which_element.source.is_exec_point = FALSE;
+         element->which_element.source.is_exec_point = false;
        }
     }
 }
@@ -351,13 +351,13 @@ tui_source_window_base::do_scroll_horizontal (int num_to_scroll)
 void
 tui_source_window_base::set_is_exec_point_at (struct tui_line_or_address l)
 {
-  int changed = 0;
+  bool changed = false;
   int i;
 
   i = 0;
   while (i < content_size)
     {
-      int new_state;
+      bool new_state;
       struct tui_line_or_address content_loa =
        content[i]->which_element.source.line_or_addr;
 
@@ -367,12 +367,12 @@ tui_source_window_base::set_is_exec_point_at (struct tui_line_or_address l)
       if (content_loa.loa == l.loa
          && ((l.loa == LOA_LINE && content_loa.u.line_no == l.u.line_no)
               || (content_loa.u.addr == l.u.addr)))
-        new_state = TRUE;
+        new_state = true;
       else
-       new_state = FALSE;
+       new_state = false;
       if (new_state != content[i]->which_element.source.is_exec_point)
         {
-          changed++;
+          changed = true;
           content[i]->which_element.source.is_exec_point = new_state;
           tui_show_source_line (this, i + 1);
         }
This page took 0.037753 seconds and 4 git commands to generate.