* coffgen.c (coff_write_alien_symbol): If we are not using the

symbol, clear the name so that it is not put in the string table.
	From Antti.Miettinen@ntc.nokia.com.
This commit is contained in:
Ian Lance Taylor 1994-08-25 14:46:10 +00:00
parent ebedfc6785
commit 715cde57f8
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
Thu Aug 25 10:44:53 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
* coffgen.c (coff_write_alien_symbol): If we are not using the
symbol, clear the name so that it is not put in the string table.
From Antti.Miettinen@ntc.nokia.com.
Wed Aug 24 11:49:19 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
* coffgen.c (coff_print_symbol): Cast pointer different to long

View File

@ -783,7 +783,9 @@ coff_write_alien_symbol (abfd, symbol, written)
{
/* There isn't much point to writing out a debugging symbol
unless we are prepared to convert it into COFF debugging
format. So, we just ignore them. */
format. So, we just ignore them. We must clobber the symbol
name to keep it from being put in the string table. */
symbol->name = "";
return true;
}
else