Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // Flags: --allow-natives-syntax --context-specialization | |
| 6 // Flags: --turbo-filter=f --turbo-inlining | |
| 7 | |
| 8 var f = (function() { | |
| 9 var max = Math.max; | |
| 10 return function f() { return max(0, -1); }; | |
| 11 })(); | |
| 12 | |
| 13 assertEquals(0, f()); | |
| 14 %OptimizeFunctionOnNextCall(f); | |
| 15 assertEquals(0, f()); | |
| OLD | NEW |