blob: e3721a3159ef23de4607f0e0ddac5d0911db00d4 [file] [log] [blame]
// 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
// Flags: --allow-natives-syntax
// Simple lazy deoptimization test.
function f() {
g();
}
function g() {
%DeoptimizeFunction(f);
}
f(); f();
%OptimizeFunctionOnNextCall(f);
f();