* config/obj-coffbfd.c (obj_coff_endef): Correct test for .bf

symbol.
This commit is contained in:
Ian Lance Taylor 1993-03-15 20:21:13 +00:00
parent c8ade7191b
commit a36f6645fb
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Mon Mar 15 12:17:28 1993 Ian Lance Taylor (ian@cygnus.com)
* config/obj-coffbfd.c (obj_coff_endef): Correct test for .bf
symbol.
Fri Mar 12 18:33:36 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
* configure.in: recognize sparc-sun-solaris2* instead of -solaris2

View File

@ -913,8 +913,7 @@ DEFUN_VOID (obj_coff_endef)
case C_FCN:
S_SET_SEGMENT (def_symbol_in_progress, SEG_E0);
if (strcmp (def_symbol_in_progress->sy_symbol.ost_entry._n._n_nptr,
".bf") == 0)
if (strcmp (S_GET_NAME (def_symbol_in_progress), ".bf") == 0)
{ /* .bf */
if (function_lineoff < 0)
{