aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2023-12-17 12:15:00 -0700
committerTom Tromey <tom@tromey.com>2024-02-08 12:16:07 -0700
commita6a25f5e2664872f2c3de707fffcb1669b03aeb1 (patch)
tree2eaf3f44c5593bbbfc3cd83fde51ff4c177b2d45
parentb08b7a15590b6a0a9144a9709a1423c502de6216 (diff)
downloadgdb-a6a25f5e2664872f2c3de707fffcb1669b03aeb1.zip
gdb-a6a25f5e2664872f2c3de707fffcb1669b03aeb1.tar.gz
gdb-a6a25f5e2664872f2c3de707fffcb1669b03aeb1.tar.bz2
Remove redundant check from tui_refresh_frame_and_register_information
tui_refresh_frame_and_register_information checks 'from_stack' in a block that's already guarded by a 'from_stack' check. This patch removes the redundant check. Tested-By: Tom de Vries <tdevries@suse.de> Reviewed-By: Andrew Burgess <aburgess@redhat.com> Approved-By: Andrew Burgess <aburgess@redhat.com>
-rw-r--r--gdb/tui/tui-hooks.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/tui/tui-hooks.c b/gdb/tui/tui-hooks.c
index 3a4eda9..fc7ffb4 100644
--- a/gdb/tui/tui-hooks.c
+++ b/gdb/tui/tui-hooks.c
@@ -132,11 +132,10 @@ tui_refresh_frame_and_register_information ()
/* Display the frame position (even if there is no symbols or
the PC is not known). */
- bool frame_info_changed_p = tui_show_frame_info (fi);
+ tui_show_frame_info (fi);
/* Refresh the register window if it's visible. */
- if (tui_is_window_visible (DATA_WIN)
- && (frame_info_changed_p || from_stack))
+ if (tui_is_window_visible (DATA_WIN))
TUI_DATA_WIN->check_register_values (fi);
}
else if (!from_stack)