diff options
author | Tom Rix <trix@redhat.com> | 2001-12-18 00:32:32 +0000 |
---|---|---|
committer | Tom Rix <trix@redhat.com> | 2001-12-18 00:32:32 +0000 |
commit | 50708144f78f6637e5910e8c5659e47ed39fa29d (patch) | |
tree | 13886d400c0fc65f81aa86c09f05c56176d57742 | |
parent | 54ebab075199a4fb4b6cb46ed5e32b0083ed907d (diff) | |
download | newlib-50708144f78f6637e5910e8c5659e47ed39fa29d.zip newlib-50708144f78f6637e5910e8c5659e47ed39fa29d.tar.gz newlib-50708144f78f6637e5910e8c5659e47ed39fa29d.tar.bz2 |
Minimal handle .typchk and .except section.
-rw-r--r-- | include/coff/ChangeLog | 2 | ||||
-rw-r--r-- | include/coff/xcoff.h | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/include/coff/ChangeLog b/include/coff/ChangeLog index 969299b..6e14207 100644 --- a/include/coff/ChangeLog +++ b/include/coff/ChangeLog @@ -1,6 +1,6 @@ 2001-12-17 Tom Rix <trix@redhat.com> - * xcoff.h : Add .except and .typchk section string. + * xcoff.h : Add .except and .typchk section string and styp flags. Fix xcoff_big_format_p macro. 2001-12-16 Tom Rix <trix@redhat.com> diff --git a/include/coff/xcoff.h b/include/coff/xcoff.h index b8fc378..e9dbaf2 100644 --- a/include/coff/xcoff.h +++ b/include/coff/xcoff.h @@ -44,6 +44,15 @@ another section header with STYP_OVRFLO set. */ #define STYP_OVRFLO 0x8000 +/* Specifies an exception section. A section of this type provides + information to identify the reason that a trap or ececptin occured within + and executable object program */ +#define STYP_EXCEPT 0x0100 + +/* Specifies a type check section. A section of this type contains parameter + argument type check strings used by the AIX binder. */ +#define STYP_TYPCHK 0x4000 + #define RS6K_AOUTHDR_OMAGIC 0x0107 /* old: text & data writeable */ #define RS6K_AOUTHDR_NMAGIC 0x0108 /* new: text r/o, data r/w */ #define RS6K_AOUTHDR_ZMAGIC 0x010B /* paged: text r/o, both page-aligned */ |