(sdbout_one_type): Don't switch to text section if

in function with section attribute.

From-SVN: r9560
This commit is contained in:
Jim Wilson 1995-05-01 16:50:11 -07:00
parent bcd49eb7a8
commit 509b12e0c5

View File

@ -1002,7 +1002,11 @@ static void
sdbout_one_type (type)
tree type;
{
text_section ();
if (current_function_decl != NULL_TREE
&& DECL_SECTION_NAME (current_function_decl) != NULL_TREE)
; /* Don't change section amid function. */
else
text_section ();
switch (TREE_CODE (type))
{