diff options
author | Sam Clegg <sbc@chromium.org> | 2018-05-10 11:53:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-10 11:53:09 -0700 |
commit | 51135887cf773586b6ca84e8d9efe5a223f8a91c (patch) | |
tree | b2820284a122b0a3f7bd507b822176b30e034ec7 /src/wasm-emscripten.h | |
parent | 111b4f1950467d51a78211af183f4ae6398aac49 (diff) | |
download | binaryen-51135887cf773586b6ca84e8d9efe5a223f8a91c.tar.gz binaryen-51135887cf773586b6ca84e8d9efe5a223f8a91c.tar.bz2 binaryen-51135887cf773586b6ca84e8d9efe5a223f8a91c.zip |
Move the renaming of llvm-generated __invoke_XX functions from s2wasm into wasm-emscripten (#1539)
This allows the same functionality to be used also in
wasm-emscripten-finalize (i.e. the lld path).
Diffstat (limited to 'src/wasm-emscripten.h')
-rw-r--r-- | src/wasm-emscripten.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wasm-emscripten.h b/src/wasm-emscripten.h index d2a0a8e3e..a0a87664b 100644 --- a/src/wasm-emscripten.h +++ b/src/wasm-emscripten.h @@ -51,6 +51,8 @@ public: // Replace placeholder emscripten_asm_const functions with *_signature versions. void fixEmAsmConsts(); + void fixInvokeFunctionNames(); + private: Module& wasm; Builder builder; |