aot compiler: Enlarge AOTNativeSymbol->symbol (#3662)

The old value was not enough for wasm_externref_obj_to_internal_obj,
which is 34 characters long.
This commit is contained in:
YAMAMOTO Takashi 2024-07-25 12:21:07 +09:00 committed by GitHub
parent c05b93f992
commit a055e0b26f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -300,7 +300,7 @@ typedef struct AOTCompData {
typedef struct AOTNativeSymbol {
bh_list_link link;
char symbol[32];
char symbol[48];
int32 index;
} AOTNativeSymbol;