* config/obj-coff.c: Add include of struc-symbol.h header.

(coff_frob_symbol): Check that function-aux entries are generated for
        defined symbols only.
This commit is contained in:
Kai Tietz 2012-10-18 17:00:56 +00:00
parent 9a176a4afc
commit c207c2c6cf
2 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,9 @@
2012-10-18 Kai Tietz <ktietz@redhat.com>
* config/obj-coff.c: Add include of struc-symbol.h header.
(coff_frob_symbol): Check that function-aux entries are generated for
defined symbols only.
* doc/as.texinfo: Add missing documentation about section flag
exclude.

View File

@ -26,6 +26,7 @@
#include "safe-ctype.h"
#include "obstack.h"
#include "subsegs.h"
#include "struc-symbol.h"
#ifdef TE_PE
#include "coff/pe.h"
@ -1359,7 +1360,8 @@ coff_frob_symbol (symbolS *symp, int *punt)
}
}
if (coff_last_function == 0 && SF_GET_FUNCTION (symp))
if (coff_last_function == 0 && SF_GET_FUNCTION (symp)
&& S_IS_DEFINED (symp))
{
union internal_auxent *auxp;
@ -1371,7 +1373,8 @@ coff_frob_symbol (symbolS *symp, int *punt)
sizeof (auxp->x_sym.x_fcnary.x_ary.x_dimen));
}
if (S_GET_STORAGE_CLASS (symp) == C_EFCN)
if (S_GET_STORAGE_CLASS (symp) == C_EFCN
&& S_IS_DEFINED (symp))
{
if (coff_last_function == 0)
as_fatal (_("C_EFCN symbol for %s out of scope"),
@ -1678,6 +1681,7 @@ obj_coff_section (int ignore ATTRIBUTE_UNUSED)
}
sec = subseg_new (name, (subsegT) exp);
if (alignment >= 0)
sec->alignment_power = alignment;