From: Keith Seitz Date: Mon, 23 Jul 2012 20:31:34 +0000 (+0000) Subject: * linespec.c (decode_objc): Record the function name X-Git-Tag: binutils-2_23-branchpoint~56 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0f5f4ffe7a8025a0cfb16b9a71c8c7347280bc5e;p=external%2Fbinutils.git * linespec.c (decode_objc): Record the function name in the linespec. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index bce298b..3449cc6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2012-07-23 Keith Seitz + + * linespec.c (decode_objc): Record the function name + in the linespec. + 2012-07-23 Tom Tromey * rs6000-nat.c (add_vmap): Rewrite archive loop. Fix reference diff --git a/gdb/linespec.c b/gdb/linespec.c index 849d69c..9bc2dbe 100644 --- a/gdb/linespec.c +++ b/gdb/linespec.c @@ -2477,6 +2477,7 @@ decode_objc (struct linespec_state *self, linespec_p ls, char **argptr) memcpy (saved_arg, *argptr, new_argptr - *argptr); saved_arg[new_argptr - *argptr] = '\0'; + ls->function_name = xstrdup (saved_arg); ls->function_symbols = info.result.symbols; ls->minimal_symbols = info.result.minimal_symbols; values = convert_linespec_to_sals (self, ls);