blob: afae71c5956d8f4b308bee954b9a6bea7dd8b834 [file] [log] [blame]
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001// Copyright 2015 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 --function-context-specialization
6// Flags: --turbo-filter=f --turbo-inlining
7
8var f = (function() {
9 var max = Math.max;
10 return function f() { return max(0, -1); };
11})();
12
13assertEquals(0, f());
14%OptimizeFunctionOnNextCall(f);
15assertEquals(0, f());