diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-02-03 15:57:07 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2013-02-03 15:57:07 +0000 |
commit | 2f202fde0a4586f88b98439b436e7b0bb1336b26 (patch) | |
tree | 6f697f19c4aea8870408ce2befc1a382a902d08c /gdb/objfiles.c | |
parent | gdb/ (diff) | |
download | binutils-gdb-2f202fde0a4586f88b98439b436e7b0bb1336b26.tar.gz binutils-gdb-2f202fde0a4586f88b98439b436e7b0bb1336b26.tar.bz2 binutils-gdb-2f202fde0a4586f88b98439b436e7b0bb1336b26.zip |
gdb/
Code cleanup.
* breakpoint.c (print_breakpoint_location): Replace bp_location field
source_file references by symtab field references. Remove variables
sal and fullname.
(momentary_breakpoint_from_master, add_location_to_breakpoint):
(clear_command, say_where): Replace bp_location field source_file
references by symtab field references.
(bp_location_dtor): Remove the source_file reference.
(update_static_tracepoint): Replace bp_location field source_file
references by symtab field references.
(breakpoint_free_objfile): New function.
* breakpoint.h (struct bp_location): Extend the comment for line_number.
Replace the field source_file by field symtab, extend its comment.
(breakpoint_free_objfile): New declaration.
* objfiles.c (free_objfile): Call breakpoint_free_objfile.
* tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
field source_file references by symtab field references.
Diffstat (limited to 'gdb/objfiles.c')
-rw-r--r-- | gdb/objfiles.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/objfiles.c b/gdb/objfiles.c index 5829699131d..8c17c148de2 100644 --- a/gdb/objfiles.c +++ b/gdb/objfiles.c @@ -566,6 +566,8 @@ free_objfile (struct objfile *objfile) the symbol file data. */ forget_cached_source_info_for_objfile (objfile); + breakpoint_free_objfile (objfile); + /* First do any symbol file specific actions required when we are finished with a particular symbol file. Note that if the objfile is using reusable symbol information (via mmalloc) then each of |