(poplevel): Start new function context when writing inline function.

From-SVN: r4755
This commit is contained in:
Richard Kenner 1993-06-26 11:21:20 -04:00
parent 86ef2ef98c
commit 47df02623a

View File

@ -931,7 +931,11 @@ poplevel (keep, reverse, functionbody)
if (DECL_ABSTRACT_ORIGIN (decl) != 0)
TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
else
output_inline_function (decl);
{
push_function_context ();
output_inline_function (decl);
pop_function_context ();
}
}
/* If there were any declarations or structure tags in that level,