summaryrefslogtreecommitdiff
path: root/gdb/location.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2017-04-10 15:53:22 -0600
committerTom Tromey <tom@tromey.com>2017-04-12 11:16:19 -0600
commit8e9e35b1808481735e2d1efbf70ed7396a845d8e (patch)
tree3d9c541a3593d66cde6ed2b42345a429c442b8a1 /gdb/location.c
parent16e802b9c085ce354b1ab9e2fd25d00bf7626fa8 (diff)
downloadbinutils-gdb-8e9e35b1808481735e2d1efbf70ed7396a845d8e.tar.gz
Change linespec_result::location to be an event_location_up
This is a follow-up to another patch. It changes linespec_result::location to be an event_location_up. gdb/ChangeLog 2017-04-12 Tom Tromey <tom@tromey.com> * probe.c (parse_probes): Update. * location.h (delete_event_location): Don't declare. (event_location_deleter::operator()): Update. * location.c (event_location_deleter::operator()): Rename from delete_event_location. * linespec.h (linespec_result) <location>: Change type to event_location_up. * linespec.c (canonicalize_linespec, event_location_to_sals) (decode_objc): Update. (linespec_result): Don't call delete_event_location. * breakpoint.c (create_breakpoints_sal) (bkpt_probe_create_sals_from_location) (strace_marker_create_sals_from_location): Update.
Diffstat (limited to 'gdb/location.c')
-rw-r--r--gdb/location.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/location.c b/gdb/location.c
index 8aa8bd53933..87963207ba1 100644
--- a/gdb/location.c
+++ b/gdb/location.c
@@ -342,10 +342,8 @@ copy_event_location (const struct event_location *src)
return event_location_up (dst);
}
-/* See description in location.h. */
-
void
-delete_event_location (struct event_location *location)
+event_location_deleter::operator() (event_location *location) const
{
if (location != NULL)
{