diff options
author | Max Graey <maxgraey@gmail.com> | 2021-09-01 18:56:12 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-01 08:56:12 -0700 |
commit | b50064bde4f584813398b7696ce7a4a3bf1cbbaa (patch) | |
tree | ff307f7239dedc752c73ab2d61a6e6729bff1ab3 /src/passes/NoExitRuntime.cpp | |
parent | d66d2d9bb0ea1e067c6b3e2d322a1d2357336893 (diff) | |
download | binaryen-b50064bde4f584813398b7696ce7a4a3bf1cbbaa.tar.gz binaryen-b50064bde4f584813398b7696ce7a4a3bf1cbbaa.tar.bz2 binaryen-b50064bde4f584813398b7696ce7a4a3bf1cbbaa.zip |
[Refactoring] Cleanup asm2wasm. Use JS instead ASM prefix where possible. NFC (#4090)
Diffstat (limited to 'src/passes/NoExitRuntime.cpp')
-rw-r--r-- | src/passes/NoExitRuntime.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/NoExitRuntime.cpp b/src/passes/NoExitRuntime.cpp index deffccd36..07cd4fc87 100644 --- a/src/passes/NoExitRuntime.cpp +++ b/src/passes/NoExitRuntime.cpp @@ -34,7 +34,7 @@ struct NoExitRuntime : public WalkerPass<PostWalker<NoExitRuntime>> { Pass* create() override { return new NoExitRuntime; } - // Remove all possible manifestations of atexit, across asm2wasm and llvm wasm + // Remove all possible manifestations of atexit, across llvm wasm // backend. std::array<Name, 4> ATEXIT_NAMES = { {"___cxa_atexit", "__cxa_atexit", "_atexit", "atexit"}}; |