Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,7 @@ jobs:
wasm64l.test_hello_world
wasm64l.test_bigswitch
wasm64l.test_module_wasm_memory
wasm64l.test_longjmp2_emscripten
other.test_memory64_proxies
other.test_failing_growth_wasm64"
- upload-test-results
Expand Down
3 changes: 2 additions & 1 deletion src/parseTools.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -964,7 +964,8 @@ function from64Expr(x, assign = true) {
}

function toIndexType(x) {
return to64(x);
if (MEMORY64 == 1) return `BigInt(${x})`;
return x;
}

function to64(x) {
Expand Down
Loading