2019-11-28 09:23:19 +00: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.
|
|
|
|
|
|
|
|
// Flags: --allow-natives-syntax --opt --no-always-opt
|
|
|
|
|
|
|
|
|
|
|
|
function bar() { return foo(); }
|
|
|
|
function foo() { return %IsBeingInterpreted(); }
|
|
|
|
|
|
|
|
%PrepareFunctionForOptimization(bar);
|
|
|
|
%PrepareFunctionForOptimization(foo);
|
|
|
|
|
|
|
|
assertTrue(bar());
|
|
|
|
assertTrue(bar());
|
2021-07-22 15:25:38 +00:00
|
|
|
%OptimizeFunctionForTopTier(bar);
|
2019-11-28 09:23:19 +00:00
|
|
|
assertFalse(bar());
|