diff options
author | Tom Tromey <tromey@redhat.com> | 2010-07-13 20:07:44 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2010-07-13 20:07:44 +0000 |
commit | 0f5238edfdd060ff07a15df61aafdfe21fb6427f (patch) | |
tree | adfbbce9ef20143b41a4b028e22ffdca16fb20fe /gdb/doc | |
parent | 131687b4ade7fdff127269e3b92b01ec3d0872c7 (diff) | |
download | gdb-0f5238edfdd060ff07a15df61aafdfe21fb6427f.zip gdb-0f5238edfdd060ff07a15df61aafdfe21fb6427f.tar.gz gdb-0f5238edfdd060ff07a15df61aafdfe21fb6427f.tar.bz2 |
gdb
PR breakpoints/8357:
* symtab.h (domain_enum_tag) <LABEL_DOMAIN>: Update comment.
* linespec.c (decode_line_1): Update comment. Call decode_label.
(decode_label): New function.
(symbol_found): Handle LOC_LABEL.
* dwarf2read.c (new_symbol) <DW_TAG_label>: Set symbol's type and
domain. Call add_symbol_to_list.
gdb/doc
* gdb.texinfo (Specify Location): Document labels.
gdb/testsuite
* gdb.base/label.exp: New file.
* gdb.base/label.c: New file.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 240ba89..d635ca5 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2010-07-13 Tom Tromey <tromey@redhat.com> + + * gdb.texinfo (Specify Location): Document labels. + 2010-07-01 Pedro Alves <pedro@codesourcery.com> * gdb.texinfo (Create and Delete Tracepoints): Add more index diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 7abb9ed..bcd4b24 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -6330,6 +6330,13 @@ in the file @var{filename}. You only need the file name with a function name to avoid ambiguity when there are identically named functions in different source files. +@item @var{label} +Specifies the line at which the label named @var{label} appears. +@value{GDBN} searches for the label in the function corresponding to +the currently selected stack frame. If there is no current selected +stack frame (for instance, if the inferior is not running), then +@value{GDBN} will not search for a label. + @item *@var{address} Specifies the program address @var{address}. For line-oriented commands, such as @code{list} and @code{edit}, this specifies a source |