Skip to content

Commit

Permalink
[circleci] Update node canary version. NFC (#20252)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbc100 authored Sep 14, 2023
1 parent 5a9623a commit 645770f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ commands:
description: "install canary version of node"
steps:
- install-node-version:
node_version: "21.0.0-v8-canary20230822f5e30d0702"
node_version: "21.0.0-v8-canary202309143a48826a08"
canary: true
install-v8:
description: "install v8 using jsvu"
Expand Down
2 changes: 1 addition & 1 deletion src/runtime_init_memory.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ if (ENVIRONMENT_IS_PTHREAD) {
'shared': true,
#endif
#if MEMORY64 == 1
'index': 'u64',
'index': 'i64',
#endif
});
#if SHARED_MEMORY
Expand Down
2 changes: 1 addition & 1 deletion test/core/test_module_wasm_memory64.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
* found in the LICENSE file.
*/

Module['wasmMemory'] = new WebAssembly.Memory({ 'initial': 256, 'maximum': 256, 'index': 'u64' });
Module['wasmMemory'] = new WebAssembly.Memory({ 'initial': 256, 'maximum': 256, 'index': 'i64' });

0 comments on commit 645770f

Please sign in to comment.