Add a comment on AOT_SECTION_TYPE_SIGNATURE ()

cf. https://github.com/bytecodealliance/wasm-micro-runtime/issues/3744
This commit is contained in:
YAMAMOTO Takashi 2024-08-22 13:35:25 +09:00 committed by GitHub
parent 67dce48201
commit b00904b092
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,6 +39,10 @@ typedef enum AOTSectionType {
AOT_SECTION_TYPE_FUNCTION = 3,
AOT_SECTION_TYPE_EXPORT = 4,
AOT_SECTION_TYPE_RELOCATION = 5,
/*
* Note: We haven't had anything to use AOT_SECTION_TYPE_SIGNATURE.
* It's just reserved for possible module signing features.
*/
AOT_SECTION_TYPE_SIGNATURE = 6,
AOT_SECTION_TYPE_CUSTOM = 100,
} AOTSectionType;