diff options
author | David Carlton <carlton@bactrian.org> | 2003-06-13 00:55:43 +0000 |
---|---|---|
committer | David Carlton <carlton@bactrian.org> | 2003-06-13 00:55:43 +0000 |
commit | e60dbae2664c1d2380b5005c55e53f955d437be0 (patch) | |
tree | 43965b6a3d3643fdba187164efff8529b83e5b07 /gdb/cp-namespace.c | |
parent | 189c4fd092218aaf8080ca2fe1005e75b37c3d68 (diff) | |
download | gdb-e60dbae2664c1d2380b5005c55e53f955d437be0.tar.gz |
2003-06-12 David Carlton <carlton@kealia.com>
* cp-namespace.c (cp_set_block_scope): Comment out
processing_has_namespace_info branch.
Diffstat (limited to 'gdb/cp-namespace.c')
-rw-r--r-- | gdb/cp-namespace.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/cp-namespace.c b/gdb/cp-namespace.c index a4c7b8d3570..db0839fb837 100644 --- a/gdb/cp-namespace.c +++ b/gdb/cp-namespace.c @@ -38,6 +38,9 @@ unsigned char processing_has_namespace_info; contain the name of the current namespace. The string is temporary; copy it if you need it. */ +/* FIXME: carlton/2003-06-12: This isn't entirely reliable: currently, + we get mislead by DW_AT_specification. */ + const char *processing_current_namespace; /* List of using directives that are active in the current file. */ @@ -187,6 +190,12 @@ cp_set_block_scope (const struct symbol *symbol, if (SYMBOL_CPLUS_DEMANGLED_NAME (symbol) != NULL) { +#if 0 + /* FIXME: carlton/2003-06-12: As mentioned above, + 'processing_has_namespace_info' currently isn't entirely + reliable, so let's always use demangled names to get this + information for now. */ + if (processing_has_namespace_info) { block_set_scope @@ -196,6 +205,7 @@ cp_set_block_scope (const struct symbol *symbol, obstack); } else +#endif { /* Try to figure out the appropriate namespace from the demangled name. */ |