Minimal handle .typchk and .except section.

This commit is contained in:
Tom Rix
2001-12-18 00:32:32 +00:00
parent 84b229ef24
commit 67fdeebeb2
4 changed files with 23 additions and 1 deletions

View File

@ -428,6 +428,14 @@ sec_to_styp_flags (sec_name, sec_flags)
{
styp_flags = STYP_LOADER;
}
else if (!strcmp (sec_name, _EXCEPT))
{
styp_flags = STYP_EXCEPT;
}
else if (!strcmp (sec_name, _TYPCHK))
{
styp_flags = STYP_TYPCHK;
}
#endif
/* Try and figure out what it should be */
else if (sec_flags & SEC_CODE)