diff --git a/src/shared-constants.h b/src/shared-constants.h index 5b85dd74d72..0d2cc73ad79 100644 --- a/src/shared-constants.h +++ b/src/shared-constants.h @@ -21,10 +21,7 @@ namespace wasm { -extern Name MEMORY_BASE; -extern Name TABLE_BASE; extern Name STACK_POINTER; -extern Name NEW_SIZE; extern Name MODULE; extern Name START; extern Name FUNC; diff --git a/src/wasm/wasm.cpp b/src/wasm/wasm.cpp index 34bcf68c7c2..724fc12e2a0 100644 --- a/src/wasm/wasm.cpp +++ b/src/wasm/wasm.cpp @@ -54,10 +54,7 @@ const char* MultiMemoriesFeature = "multi-memories"; } // namespace UserSections } // namespace BinaryConsts -Name MEMORY_BASE("__memory_base"); -Name TABLE_BASE("__table_base"); Name STACK_POINTER("__stack_pointer"); -Name NEW_SIZE("newSize"); Name MODULE("module"); Name START("start"); Name GLOBAL("global");