diff options
Diffstat (limited to 'src/asmjs')
-rw-r--r-- | src/asmjs/shared-constants.cpp | 4 | ||||
-rw-r--r-- | src/asmjs/shared-constants.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/asmjs/shared-constants.cpp b/src/asmjs/shared-constants.cpp index f1123ba67..7f421a47d 100644 --- a/src/asmjs/shared-constants.cpp +++ b/src/asmjs/shared-constants.cpp @@ -89,8 +89,8 @@ cashew::IString WASM_ROTL32("__wasm_rotl_i32"); cashew::IString WASM_ROTL64("__wasm_rotl_i64"); cashew::IString WASM_ROTR32("__wasm_rotr_i32"); cashew::IString WASM_ROTR64("__wasm_rotr_i64"); -cashew::IString WASM_GROW_MEMORY("__wasm_grow_memory"); -cashew::IString WASM_CURRENT_MEMORY("__wasm_current_memory"); +cashew::IString WASM_MEMORY_GROW("__wasm_memory_grow"); +cashew::IString WASM_MEMORY_SIZE("__wasm_memory_size"); cashew::IString WASM_FETCH_HIGH_BITS("__wasm_fetch_high_bits"); cashew::IString INT64_TO_32_HIGH_BITS("i64toi32_i32$HIGH_BITS"); cashew::IString WASM_NEAREST_F32("__wasm_nearest_f32"); diff --git a/src/asmjs/shared-constants.h b/src/asmjs/shared-constants.h index e8d5d5693..8b4e8fff3 100644 --- a/src/asmjs/shared-constants.h +++ b/src/asmjs/shared-constants.h @@ -92,8 +92,8 @@ extern cashew::IString WASM_ROTL32; extern cashew::IString WASM_ROTL64; extern cashew::IString WASM_ROTR32; extern cashew::IString WASM_ROTR64; -extern cashew::IString WASM_GROW_MEMORY; -extern cashew::IString WASM_CURRENT_MEMORY; +extern cashew::IString WASM_MEMORY_GROW; +extern cashew::IString WASM_MEMORY_SIZE; extern cashew::IString WASM_FETCH_HIGH_BITS; extern cashew::IString INT64_TO_32_HIGH_BITS; extern cashew::IString WASM_NEAREST_F32; |