blob: 3d7e74f62660d15524a3930b08892b9e951a53b1 [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// Copyright 2014 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Flags: --allow-natives-syntax
6
7function foo() {
8 return "fooed";
9}
10
11%OptimizeFunctionOnNextCall(foo);
12assertEquals("fooed", foo());
13assertOptimized(foo);
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000014
15function bar() {
16 return "bared";
17}
18
19assertEquals("bared", bar());
20%OptimizeFunctionOnNextCall(bar);
21assertEquals("bared", bar());
22assertOptimized(bar);