summaryrefslogtreecommitdiff
path: root/src/wasm/wasm.cpp
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2022-08-15 12:50:31 -0700
committerGitHub <noreply@github.com>2022-08-15 19:50:31 +0000
commitffa40d7f408ed4d35c806f550b1d6bac2a039745 (patch)
tree6e12ea8f1466dc72c04059d8f7f37e1afd17e10c /src/wasm/wasm.cpp
parent6c6aae1358d657fe16fcfdc3a0eccfcea66cc841 (diff)
downloadbinaryen-ffa40d7f408ed4d35c806f550b1d6bac2a039745.tar.gz
binaryen-ffa40d7f408ed4d35c806f550b1d6bac2a039745.tar.bz2
binaryen-ffa40d7f408ed4d35c806f550b1d6bac2a039745.zip
LegalizeJSInterface: Look for get/setTempRet0 as exports (#4881)
This allows emscripten to move these helper functions from JS library imports to native wasm exports. See https://github.com/emscripten-core/emscripten/issues/7273
Diffstat (limited to 'src/wasm/wasm.cpp')
-rw-r--r--src/wasm/wasm.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/wasm/wasm.cpp b/src/wasm/wasm.cpp
index 34b1e82b7..1c9c1389d 100644
--- a/src/wasm/wasm.cpp
+++ b/src/wasm/wasm.cpp
@@ -57,8 +57,6 @@ const char* StringsFeature = "strings";
Name MEMORY_BASE("__memory_base");
Name TABLE_BASE("__table_base");
Name STACK_POINTER("__stack_pointer");
-Name GET_TEMP_RET0("getTempRet0");
-Name SET_TEMP_RET0("setTempRet0");
Name NEW_SIZE("newSize");
Name MODULE("module");
Name START("start");