diff options
author | Joel Brobecker <brobecker@gnat.com> | 2012-03-29 18:22:51 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2012-03-29 18:22:51 +0000 |
commit | 1c0ac8c76635e64f933199c13d491e1b14b9363e (patch) | |
tree | dd3c951b25072819e516d3c6cb8e36474b654141 /gdb/ada-lang.h | |
parent | f67f98b55b74d346ef535a01efdcc467f220b356 (diff) | |
download | fsf-binutils-gdb-1c0ac8c76635e64f933199c13d491e1b14b9363e.zip fsf-binutils-gdb-1c0ac8c76635e64f933199c13d491e1b14b9363e.tar.gz fsf-binutils-gdb-1c0ac8c76635e64f933199c13d491e1b14b9363e.tar.bz2 |
[Ada] struct ada_symbol_info minor reformatting & doc update.
gdb/ChangeLog:
* ada-lang.h (struct ada_symbol_info): Reformat. Improve
documentation.
Diffstat (limited to 'gdb/ada-lang.h')
-rw-r--r-- | gdb/ada-lang.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/gdb/ada-lang.h b/gdb/ada-lang.h index d019a1d..cbca3db 100644 --- a/gdb/ada-lang.h +++ b/gdb/ada-lang.h @@ -80,11 +80,15 @@ struct ada_opname_map /* Defined in ada-lang.c */ extern const struct ada_opname_map ada_opname_table[]; -/* A tuple, (symbol, block), representing one instance of a - * symbol-lookup operation. */ -struct ada_symbol_info { - struct symbol* sym; - struct block* block; +/* A tuple representing one instance of a symbol-lookup operation. */ + +struct ada_symbol_info +{ + /* The symbol that was found. */ + struct symbol *sym; + + /* The block where the symbol was found. */ + struct block *block; }; /* Denotes a type of renaming symbol (see ada_parse_renaming). */ |