From 7d3bac62afb66dde98990e4ba3dbc3a077de087a Mon Sep 17 00:00:00 2001 From: Benbuck Nason Date: Thu, 20 Jun 2024 19:24:56 -0700 Subject: [PATCH] Add linked field comment for aot import type (#3557) --- core/iwasm/common/wasm_runtime_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/iwasm/common/wasm_runtime_common.c b/core/iwasm/common/wasm_runtime_common.c index 53353342..45f2fb6d 100644 --- a/core/iwasm/common/wasm_runtime_common.c +++ b/core/iwasm/common/wasm_runtime_common.c @@ -4010,7 +4010,7 @@ wasm_runtime_get_import_type(WASMModuleCommon *const module, int32 import_index, import_type->module_name = aot_import_table->module_name; import_type->name = aot_import_table->table_name; import_type->kind = WASM_IMPORT_EXPORT_KIND_TABLE; - import_type->linked = false; + import_type->linked = false; /* not supported */ import_type->u.table_type = (WASMTableType *)&aot_import_table->table_type; return; @@ -4023,7 +4023,7 @@ wasm_runtime_get_import_type(WASMModuleCommon *const module, int32 import_index, import_type->module_name = aot_import_memory->module_name; import_type->name = aot_import_memory->memory_name; import_type->kind = WASM_IMPORT_EXPORT_KIND_MEMORY; - import_type->linked = false; + import_type->linked = false; /* not supported */ import_type->u.memory_type = (WASMMemoryType *)&aot_import_memory->mem_type; return;