2017-11-28 12:43: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.
|
|
|
|
|
|
|
|
// Flags: --allow-natives-syntax --opt
|
|
|
|
|
|
|
|
function foo() { return -"0" }
|
2019-05-03 14:32:12 +00:00
|
|
|
%PrepareFunctionForOptimization(foo);
|
2017-11-28 12:43:21 +00:00
|
|
|
foo();
|
|
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
|
|
foo();
|
|
|
|
assertOptimized(foo);
|
|
|
|
|
|
|
|
function bar() { return -"1" }
|
2019-05-03 14:32:12 +00:00
|
|
|
%PrepareFunctionForOptimization(bar);
|
2017-11-28 12:43:21 +00:00
|
|
|
bar();
|
|
|
|
%OptimizeFunctionOnNextCall(bar);
|
|
|
|
bar();
|
|
|
|
assertOptimized(bar);
|