From 45ff1e4c306645bd95e69c777152bd6cdf2f85e4 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Wed, 29 Apr 2020 00:46:55 -0400 Subject: 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. --- src/wasm/wasm-emscripten.cpp | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src') 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) { -- cgit v1.2.3