* ldsym.c (write_file_locals): Write BSF_CONSTRUCTOR

symbols, unless stripping.
This commit is contained in:
Per Bothner
1993-06-01 22:44:42 +00:00
parent 3ef08dc3e3
commit 1cf91c69b0
2 changed files with 10 additions and 2 deletions

View File

@@ -528,9 +528,12 @@ write_file_locals (output_buffer)
*output_buffer++ = p;
}
}
else if (p->flags & BSF_CTOR)
else if (p->flags & BSF_CONSTRUCTOR)
{
/* Throw it away */
if (strip_symbols != STRIP_ALL)
{
*output_buffer++ = p;
}
}
else
{