* ldlang.c (lang_add_entry): Only set the entry symbol if it has

not been set already.
This commit is contained in:
Ian Lance Taylor 1994-05-27 05:09:31 +00:00
parent 3d3e5651cf
commit 29371b1feb
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Fri May 27 01:08:14 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* ldlang.c (lang_add_entry): Only set the entry symbol if it has
not been set already.
Tue May 24 16:13:43 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* emulparams/elf32mipb.sh (OTHER_READONLY_SECTIONS): Don't give

View File

@ -2625,7 +2625,8 @@ void
lang_add_entry (name)
CONST char *name;
{
entry_symbol = name;
if (entry_symbol == NULL)
entry_symbol = name;
}
void