[Ada] struct ada_symbol_info minor reformatting & doc update.
gdb/ChangeLog: * ada-lang.h (struct ada_symbol_info): Reformat. Improve documentation.
This commit is contained in:
parent
f67f98b55b
commit
1c0ac8c766
2 changed files with 14 additions and 5 deletions
|
@ -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). */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue