| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Flags: --allow-natives-syntax --context-specialization | 5 // Flags: --allow-natives-syntax --function-context-specialization |
| 6 // Flags: --turbo-filter=f --turbo-inlining | 6 // Flags: --turbo-filter=f --turbo-inlining |
| 7 | 7 |
| 8 var f = (function() { | 8 var f = (function() { |
| 9 var max = Math.max; | 9 var max = Math.max; |
| 10 return function f() { return max(0, -1); }; | 10 return function f() { return max(0, -1); }; |
| 11 })(); | 11 })(); |
| 12 | 12 |
| 13 assertEquals(0, f()); | 13 assertEquals(0, f()); |
| 14 %OptimizeFunctionOnNextCall(f); | 14 %OptimizeFunctionOnNextCall(f); |
| 15 assertEquals(0, f()); | 15 assertEquals(0, f()); |
| OLD | NEW |