OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 the V8 project authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // Flags: --allow-natives-syntax --turbo | |
6 | |
7 eval('function f(a) { return [' + new Array(1 << 17) + ',a] }'); | |
8 assertEquals(23, f(23)[1 << 17]); | |
9 assertEquals(42, f(42)[1 << 17]); | |
10 %OptimizeFunctionOnNextCall(f); | |
11 assertEquals(65, f(65)[1 << 17]); | |
OLD | NEW |