Skip to content

Commit 645770f

Browse files
authored
[circleci] Update node canary version. NFC (#20252)
1 parent 5a9623a commit 645770f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ commands:
108108
description: "install canary version of node"
109109
steps:
110110
- install-node-version:
111-
node_version: "21.0.0-v8-canary20230822f5e30d0702"
111+
node_version: "21.0.0-v8-canary202309143a48826a08"
112112
canary: true
113113
install-v8:
114114
description: "install v8 using jsvu"

src/runtime_init_memory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ if (ENVIRONMENT_IS_PTHREAD) {
4343
'shared': true,
4444
#endif
4545
#if MEMORY64 == 1
46-
'index': 'u64',
46+
'index': 'i64',
4747
#endif
4848
});
4949
#if SHARED_MEMORY

test/core/test_module_wasm_memory64.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
* found in the LICENSE file.
66
*/
77

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

0 commit comments

Comments
 (0)