You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Wasm64] Fix makeSetValue of i64s with WASM_BIGINT (#17619)
The code here assumed that we can write HEAP64[ptr>>3] to read an
i64 value. That assumes the pointer has 64-bit alignment, which is not the
case with wasm32+WASM_BIGINT.
This fixes a WasmFS issue where we'd pass a pointer to a file size, a
64-bit number, and write it from JS in the fetch backend (specifically the
async jsimpl code that it uses), but this is a much more general issue.
Fixes#17614
0 commit comments