tree.c (decl_function_context): Don't treat C++ member functions of classes declared in a function...

* tree.c (decl_function_context): Don't treat C++ member
        functions of classes declared in a function, as nested functions.

From-SVN: r8065
This commit is contained in:
Mike Stump 1994-09-09 23:48:21 +00:00
parent c3898ccd98
commit fe1e3bf47e

View File

@ -3850,7 +3850,7 @@ decl_function_context (decl)
{
if (TREE_CODE (context) == RECORD_TYPE
|| TREE_CODE (context) == UNION_TYPE)
context = TYPE_CONTEXT (context);
context = NULL_TREE;
else if (TREE_CODE (context) == TYPE_DECL)
context = DECL_CONTEXT (context);
else if (TREE_CODE (context) == BLOCK)