| 1234567891011121314151617181920212223242526 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- function opt(arr) {
- if (arr.length <= 15)
- return;
- let j = 0;
- for (let i = 0; i < 2; i++) {
- arr[j] = 0x1234; // (a)
- j += 0x100000;
- j + 0x7ffffff0;
- }
- }
- function main() {
- for (let i = 0; i < 0x10000; i++) {
- opt(new Uint32Array(100));
- }
- }
- main();
- WScript.Echo('pass');
|