diff options
author | Bryce McKinlay <bryce@waitaki.otago.ac.nz> | 2002-05-24 09:19:55 +0000 |
---|---|---|
committer | Bryce McKinlay <bryce@gcc.gnu.org> | 2002-05-24 10:19:55 +0100 |
commit | 7efda05490056e0aa23cd533dce528294af6b4b1 (patch) | |
tree | 3ee22b65c0acd2a88905426630f9cb23de592473 /gcc | |
parent | 397de1ff0f85a82a2547519715f7300e71af847d (diff) | |
download | gcc-7efda05490056e0aa23cd533dce528294af6b4b1.zip gcc-7efda05490056e0aa23cd533dce528294af6b4b1.tar.gz gcc-7efda05490056e0aa23cd533dce528294af6b4b1.tar.bz2 |
tree.c (decl_type_context): Return NULL_TREE if decl's context is a namespace.
* tree.c (decl_type_context): Return NULL_TREE if decl's context is a
namespace.
From-SVN: r53828
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bc44ee8..53d4d0d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-05-24 Bryce McKinlay <bryce@waitaki.otago.ac.nz> + + * tree.c (decl_type_context): Return NULL_TREE if decl's context is a + namespace. + 2002-05-24 Andreas Jaeger <aj@suse.de> * ggc-page.c (alloc_page): Cast variables of type size_t to @@ -4212,6 +4212,9 @@ decl_type_context (decl) while (context) { + if (TREE_CODE (context) == NAMESPACE_DECL) + return NULL_TREE; + if (TREE_CODE (context) == RECORD_TYPE || TREE_CODE (context) == UNION_TYPE || TREE_CODE (context) == QUAL_UNION_TYPE) |