2020-03-05 10:49:19 -08:00
|
|
|
// Copyright 2019 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.
|
|
|
|
|
2022-09-21 13:28:42 +02:00
|
|
|
// Flags: --allow-natives-syntax --turbofan --no-always-turbofan
|
2020-03-05 10:49:19 -08:00
|
|
|
|
|
|
|
|
|
|
|
function bar() { return foo(); }
|
|
|
|
function foo() { return %IsBeingInterpreted(); }
|
|
|
|
|
|
|
|
%PrepareFunctionForOptimization(bar);
|
|
|
|
%PrepareFunctionForOptimization(foo);
|
|
|
|
|
|
|
|
assertTrue(bar());
|
|
|
|
assertTrue(bar());
|
2022-04-12 11:10:15 +02:00
|
|
|
%OptimizeFunctionOnNextCall(bar);
|
2020-03-05 10:49:19 -08:00
|
|
|
assertFalse(bar());
|