summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/regress/regress-460937.js
blob: cd57f93328beb1e2bab4e814afb3445e6843abe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Flags: --allow-natives-syntax

function f() {
  var a = new Array(100000);
  var i = 0;
  while (!%HasFastDoubleElements(a)) {
    a[i] = i;
    i += 0.1;
  }
  a[1] = 1.5;
}

f();
%OptimizeFunctionOnNextCall(f);
f();