Skip to content

Commit 7d3bac6

Browse files
authored
Add linked field comment for aot import type (#3557)
1 parent 9b9e938 commit 7d3bac6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/iwasm/common/wasm_runtime_common.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4010,7 +4010,7 @@ wasm_runtime_get_import_type(WASMModuleCommon *const module, int32 import_index,
40104010
import_type->module_name = aot_import_table->module_name;
40114011
import_type->name = aot_import_table->table_name;
40124012
import_type->kind = WASM_IMPORT_EXPORT_KIND_TABLE;
4013-
import_type->linked = false;
4013+
import_type->linked = false; /* not supported */
40144014
import_type->u.table_type =
40154015
(WASMTableType *)&aot_import_table->table_type;
40164016
return;
@@ -4023,7 +4023,7 @@ wasm_runtime_get_import_type(WASMModuleCommon *const module, int32 import_index,
40234023
import_type->module_name = aot_import_memory->module_name;
40244024
import_type->name = aot_import_memory->memory_name;
40254025
import_type->kind = WASM_IMPORT_EXPORT_KIND_MEMORY;
4026-
import_type->linked = false;
4026+
import_type->linked = false; /* not supported */
40274027
import_type->u.memory_type =
40284028
(WASMMemoryType *)&aot_import_memory->mem_type;
40294029
return;

0 commit comments

Comments
 (0)