diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-12-25 08:03:33 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-12-25 08:03:33 +0000 |
commit | f35a17b5424e3d92d168c2a30d85940294c22d9a (patch) | |
tree | d5435641cea99cddd3e3a08eb36289edf2a9ddf5 /gdb/breakpoint.c | |
parent | c2c899ab4bd09a27f48dc6029ccd426750ae5e9f (diff) | |
download | gdb-f35a17b5424e3d92d168c2a30d85940294c22d9a.zip gdb-f35a17b5424e3d92d168c2a30d85940294c22d9a.tar.gz gdb-f35a17b5424e3d92d168c2a30d85940294c22d9a.tar.bz2 |
gdb/
* ada-lang.c (is_known_support_routine): New variable fullname. Use
access call to verify the symtab_to_fullname result.
* breakpoint.c (print_breakpoint_location, update_static_tracepoint):
Remove NULL check of symtab_to_fullname result.
* cli/cli-cmds.c (edit_command): Likewise.
* mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
(mi_cmd_file_list_exec_source_files): Likewise.
* python/py-symtab.c (stpy_fullname): Likewise.
* source.c (symtab_to_fullname): Update function comment. Rename
variable r to fd, move it to inner block. Always provide non-NULL
result.
(print_source_lines_base): Remove NULL check of symtab_to_fullname
result.
* stack.c (print_frame): Likewise.
* symtab.c (iterate_over_some_symtabs, find_line_symtab, sources_info):
Likewise.
* tracepoint.c (print_one_static_tracepoint_marker): Likewise.
gdb/doc/
* gdb.texinfo (GDB/MI Data Manipulation) (fullname): Make it always
present.
(GDB/MI File Commands) (-file-list-exec-source-files): Make the
fullname output always present.
gdb/testsuite/
* gdb.mi/mi-fullname-deleted.exp: New file.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index bb4be0b..66bbf76 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -5694,8 +5694,7 @@ print_breakpoint_location (struct breakpoint *b, struct symtab_and_line sal = find_pc_line (loc->address, 0); const char *fullname = symtab_to_fullname (sal.symtab); - if (fullname) - ui_out_field_string (uiout, "fullname", fullname); + ui_out_field_string (uiout, "fullname", fullname); } ui_out_field_int (uiout, "line", loc->line_number); @@ -13870,8 +13869,7 @@ update_static_tracepoint (struct breakpoint *b, struct symtab_and_line sal) { const char *fullname = symtab_to_fullname (sal2.symtab); - if (fullname) - ui_out_field_string (uiout, "fullname", fullname); + ui_out_field_string (uiout, "fullname", fullname); } ui_out_field_int (uiout, "line", sal2.line); |