* dlltool.c (gen_exp_file): Always output names for forwarded symbols.

This commit is contained in:
Christopher Faylor 2004-02-21 21:28:22 +00:00
parent ba36193269
commit eff21b8ec2
2 changed files with 10 additions and 6 deletions

View File

@ -1,3 +1,7 @@
2004-02-21 Dmitry Timoshkov <dmitry@baikal.ru>
* dlltool.c (gen_exp_file): Always output names for forwarded symbols.
2004-02-19 Jakub Jelinek <jakub@redhat.com>
* objcopy.c (copy_section): Avoid warnings.

View File

@ -1841,14 +1841,14 @@ gen_exp_file (void)
fprintf(f,"%s Export Name Table\n", ASM_C);
for (i = 0; (exp = d_exports_lexically[i]); i++)
if (!exp->noname || show_allnames)
{
{
if (!exp->noname || show_allnames)
fprintf (f, "n%d: %s \"%s\"\n",
exp->ordinal, ASM_TEXT, xlate (exp->name));
if (exp->forward != 0)
fprintf (f, "f%d: %s \"%s\"\n",
exp->forward, ASM_TEXT, exp->internal_name);
}
if (exp->forward != 0)
fprintf (f, "f%d: %s \"%s\"\n",
exp->forward, ASM_TEXT, exp->internal_name);
}
if (a_list)
{