2017-01-26 20:52:21 +00:00
|
|
|
// Copyright 2017 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.
|
|
|
|
|
2017-07-13 18:06:15 +00:00
|
|
|
// Flags: --allow-natives-syntax
|
2017-01-26 20:52:21 +00:00
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
2019-06-12 14:00:50 +00:00
|
|
|
function foo(f) {
|
|
|
|
return f.apply(this, arguments);
|
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(foo);
|
2017-01-26 20:52:21 +00:00
|
|
|
function bar() {}
|
|
|
|
|
|
|
|
foo(bar);
|
|
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
|
|
foo(bar);
|