diff options
author | Joel Brobecker <brobecker@gnat.com> | 2012-03-29 18:23:00 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2012-03-29 18:23:00 +0000 |
commit | 4e5c77fe1ac64db7550f09c442563620fb1e7080 (patch) | |
tree | b1332e5a2ae1680dc943c2ceb8a3f19acb85b1cf /gdb/ChangeLog | |
parent | 1c0ac8c76635e64f933199c13d491e1b14b9363e (diff) | |
download | gdb-4e5c77fe1ac64db7550f09c442563620fb1e7080.zip gdb-4e5c77fe1ac64db7550f09c442563620fb1e7080.tar.gz gdb-4e5c77fe1ac64db7550f09c442563620fb1e7080.tar.bz2 |
Make ada_lookup_encoded_symbol "return" a struct ada_symbol_info
This makes ada_lookup_encoded_symbol more consistent with other functions
such as ada_lookup_symbol_list, and also makes it clearer in the code
using that function that symbol and block are related.
gdb/ChangeLog:
* ada-lang.c (ada_lookup_encoded_symbol): Now returns void.
Replace block_found argument by symbol_info. Adjust
implementation accordingly. Add function documentation.
(ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol.
Fix documentation.
* ada-lang.h (ada_lookup_encoded_symbol): Update declaration.
* ada-exp.y (write_object_renaming): Adjust to new
ada_lookup_encoded_symbol API.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 981fda7..0c50bc8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,16 @@ 2012-03-29 Joel Brobecker <brobecker@adacore.com> + * ada-lang.c (ada_lookup_encoded_symbol): Now returns void. + Replace block_found argument by symbol_info. Adjust + implementation accordingly. Add function documentation. + (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol. + Fix documentation. + * ada-lang.h (ada_lookup_encoded_symbol): Update declaration. + * ada-exp.y (write_object_renaming): Adjust to new + ada_lookup_encoded_symbol API. + +2012-03-29 Joel Brobecker <brobecker@adacore.com> + * ada-lang.h (struct ada_symbol_info): Reformat. Improve documentation. |