summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/regress/regress-435477.js
blob: d6eb3d0abcb696035cbee007faf7093efe56bf3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2014 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
var a = new Array(128);

function f(a, base) {
  a[base] = 2;
};
%PrepareFunctionForOptimization(f);
f(a, undefined);
f("r12", undefined);
f(a, 0);
%OptimizeFunctionOnNextCall(f);
f(a, 0);