2014-09-29 13:20:04 +04: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.
|
|
|
|
|
2018-03-07 08:54:53 +01:00
|
|
|
// Flags: --allow-natives-syntax --expose-gc
|
2014-09-29 13:20:04 +04:00
|
|
|
|
|
|
|
function g(dummy, x) {
|
|
|
|
var start = "";
|
2019-08-16 11:32:46 +02:00
|
|
|
if (x) {
|
|
|
|
start = x + ' - ';
|
|
|
|
}
|
2014-09-29 13:20:04 +04:00
|
|
|
start = start + "array length";
|
|
|
|
};
|
|
|
|
|
|
|
|
function f() {
|
|
|
|
gc();
|
|
|
|
g([0.1]);
|
2019-08-16 11:32:46 +02:00
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(f);
|
2014-09-29 13:20:04 +04:00
|
|
|
f();
|
|
|
|
%OptimizeFunctionOnNextCall(f);
|
|
|
|
f();
|
|
|
|
f();
|