diff options
author | Tom Tromey <tom@tromey.com> | 2019-11-12 17:08:25 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2019-12-20 09:15:50 -0700 |
commit | 1ae58f0c640ccef6ae9cc9b349547bb552274b69 (patch) | |
tree | 9aba4df958f67834977290f5b9177f1e74bb41d2 /gdb/tui/tui-disasm.h | |
parent | 039298ec451ecf1fa1b9ff1771168b0a5b3a6f68 (diff) | |
download | gdb-1ae58f0c640ccef6ae9cc9b349547bb552274b69.zip gdb-1ae58f0c640ccef6ae9cc9b349547bb552274b69.tar.gz gdb-1ae58f0c640ccef6ae9cc9b349547bb552274b69.tar.bz2 |
Simplify tui_source_window_base::maybe_update method
tui_source_window_base::maybe_update takes a symtab_and_line, plus a
separate line number and PC. Because a symtab_and_line already holds
a line number and a PC, it is possible to remove these extra
parameters.
gdb/ChangeLog
2019-12-20 Tom Tromey <tom@tromey.com>
* tui/tui-winsource.h (struct tui_source_window_base)
<maybe_update>: Remove line_no and addr parameters.
* tui/tui-stack.c (tui_show_frame_info): Set PC on sal. Update.
* tui/tui-source.h (struct tui_source_window) <maybe_update>:
Update.
* tui/tui-source.c (tui_source_window::maybe_update): Remove
line_no and addr parameters.
* tui/tui-disasm.h (struct tui_disasm_window) <maybe_update>:
Update.
* tui/tui-disasm.c (tui_disasm_window::maybe_update): Remove
line_no and addr parameters.
Change-Id: I33d8e1a669a179544edb4197f5f7c5429dfc368e
Diffstat (limited to 'gdb/tui/tui-disasm.h')
-rw-r--r-- | gdb/tui/tui-disasm.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/tui/tui-disasm.h b/gdb/tui/tui-disasm.h index a4b04e4..28f87c6 100644 --- a/gdb/tui/tui-disasm.h +++ b/gdb/tui/tui-disasm.h @@ -44,9 +44,7 @@ struct tui_disasm_window : public tui_source_window_base bool location_matches_p (struct bp_location *loc, int line_no) override; - void maybe_update (struct frame_info *fi, symtab_and_line sal, - int line_no, CORE_ADDR addr) - override; + void maybe_update (struct frame_info *fi, symtab_and_line sal) override; void erase_source_content () override { |