diff options
author | Keven Boell <keven.boell@intel.com> | 2013-11-15 11:32:01 +0100 |
---|---|---|
committer | Keven Boell <keven.boell@intel.com> | 2013-12-19 13:18:21 +0100 |
commit | 530e8392d7d5d4a831c5ce0e4cd410e1c4bd166a (patch) | |
tree | 42608c61640ecfb4d7d3800e2f27868d355a63f5 /gdb/f-exp.y | |
parent | 7f9b20bb352768e14cfa7361a82373b8539bebed (diff) | |
download | gdb-530e8392d7d5d4a831c5ce0e4cd410e1c4bd166a.zip gdb-530e8392d7d5d4a831c5ce0e4cd410e1c4bd166a.tar.gz gdb-530e8392d7d5d4a831c5ce0e4cd410e1c4bd166a.tar.bz2 |
fortran: enable ptype/whatis for modules.
Added new domain MODULE_DOMAIN for fortran modules to avoid
issues with sharing namespaces (e.g. when a variable currently
in scope has the same name as a module).
(gdb) ptype modname
old> No symbol "modname" in current context.
new> type = module modname
This fixes PR 15209 and also addresses the issue
with sharing namespaces:
https://sourceware.org/ml/gdb-patches/2013-02/msg00643.html
2013-11-19 Keven Boell <keven.boell@intel.com>
Sanimir Agovic <sanimir.agovic@intel.com>
* cp-namespace.c (cp_lookup_nested_symbol): Enable
nested lookups for fortran modules.
* dwarf2read.c (read_module): Add fortran module to
the symbol table.
(add_partial_symbol, add_partial_module): Add fortran
module to the partial symbol table.
(new_symbol_full): Create full symbol for fortran module.
* f-exp.y (yylex): Add new module domain to be parsed.
* symtab.h: New domain for fortran modules.
testsuite/
* gdb.fortran/module.exp: Completion matches fortran module
names as well. ptype/whatis on modules return a proper type.
Add new check for having the correct scope.
Diffstat (limited to 'gdb/f-exp.y')
-rw-r--r-- | gdb/f-exp.y | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gdb/f-exp.y b/gdb/f-exp.y index a7e59df..e97a6dd 100644 --- a/gdb/f-exp.y +++ b/gdb/f-exp.y @@ -1175,7 +1175,12 @@ yylex (void) char *tmp = copy_name (yylval.sval); struct symbol *sym; struct field_of_this_result is_a_field_of_this; - enum domain_enum_tag lookup_domains[] = {STRUCT_DOMAIN, VAR_DOMAIN}; + enum domain_enum_tag lookup_domains[] = + { + STRUCT_DOMAIN, + VAR_DOMAIN, + MODULE_DOMAIN + }; int i; int hextype; |