diff options
-rw-r--r-- | rts/LinkerInternals.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/rts/LinkerInternals.h b/rts/LinkerInternals.h index 71a939f8c0..5370c86357 100644 --- a/rts/LinkerInternals.h +++ b/rts/LinkerInternals.h @@ -103,6 +103,11 @@ typedef SECTIONKIND_FINI_ARRAY, /* We don't know what the section is and don't care. */ SECTIONKIND_OTHER, + + /* + * Windows-specific section kinds + */ + /* Section contains debug information. e.g. .debug$. */ SECTIONKIND_DEBUG, /* Section contains exception table. e.g. .pdata. */ @@ -115,8 +120,6 @@ typedef SECTIONKIND_BFD_IMPORT_LIBRARY_HEAD, /* Section defines an import library entry, e.g. idata$7. */ SECTIONKIND_BFD_IMPORT_LIBRARY, - /* Unknown section */ - SECTIONKIND_NOINFOAVAIL } SectionKind; |