summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2020-04-29 00:46:55 -0400
committerGitHub <noreply@github.com>2020-04-28 21:46:55 -0700
commit45ff1e4c306645bd95e69c777152bd6cdf2f85e4 (patch)
tree1d1ff08c1997aedeeeda65697ea775431eafb2b9 /src
parente44b0c9225cf17d3c76cfb9e41a83eb0104f13e4 (diff)
downloadbinaryen-45ff1e4c306645bd95e69c777152bd6cdf2f85e4.tar.gz
binaryen-45ff1e4c306645bd95e69c777152bd6cdf2f85e4.tar.bz2
binaryen-45ff1e4c306645bd95e69c777152bd6cdf2f85e4.zip
Stop generating implementedFunctions in wasm-emscripten-finalize (#2819)
This list is identical to the export list no there is no need to output this twice.
Diffstat (limited to 'src')
-rw-r--r--src/wasm/wasm-emscripten.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/wasm/wasm-emscripten.cpp b/src/wasm/wasm-emscripten.cpp
index 2e1aac0a3..460af19c2 100644
--- a/src/wasm/wasm-emscripten.cpp
+++ b/src/wasm/wasm-emscripten.cpp
@@ -1288,15 +1288,6 @@ std::string EmscriptenGlueGenerator::generateEmscriptenMetadata(
meta << "\n ],\n";
if (!wasm.exports.empty()) {
- meta << " \"implementedFunctions\": [";
- commaFirst = true;
- for (const auto& ex : wasm.exports) {
- if (ex->kind == ExternalKind::Function) {
- meta << nextElement() << "\"_" << ex->name.str << '"';
- }
- }
- meta << "\n ],\n";
-
meta << " \"exports\": [";
commaFirst = true;
for (const auto& ex : wasm.exports) {