2014-11-21 10:28:55 +00:00
|
|
|
// 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;
|
2019-06-12 14:00:50 +00:00
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(f);
|
2014-11-21 10:28:55 +00:00
|
|
|
f(a, undefined);
|
|
|
|
f("r12", undefined);
|
|
|
|
f(a, 0);
|
|
|
|
%OptimizeFunctionOnNextCall(f);
|
|
|
|
f(a, 0);
|