Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
src: remove misplaced windows code under posix guard in node.cc
The V8 WebAssembly trap handler setup for Windows was incorrectly nested within a POSIX conditional compilation block in src/node.cc. This caused the related functions to be effectively non-operational on Windows. The changes involve removing the Windows-specific code from the POSIX section and correctly placing it under the WIN32 checks. This fix will ensure that the intended exception handling is active on Windows builds, potentially improving WebAssembly performance. Fixes: nodejs#52404 Refs: nodejs#35033
- Loading branch information