| 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 --use-osr --turbo-osr | 5 // Flags: --allow-natives-syntax --use-osr |
| 6 | 6 |
| 7 function id(f) { return f; } | 7 function id(f) { return f; } |
| 8 | 8 |
| 9 function foo(a) { | 9 function foo(a) { |
| 10 var r = /\0/; | 10 var r = /\0/; |
| 11 for (var i = 0; i < 10; i++) { | 11 for (var i = 0; i < 10; i++) { |
| 12 if (a) %OptimizeOsr(); | 12 if (a) %OptimizeOsr(); |
| 13 } | 13 } |
| 14 return r; | 14 return r; |
| 15 } | 15 } |
| (...skipping 29 matching lines...) Expand all Loading... |
| 45 var x = f(false); | 45 var x = f(false); |
| 46 assertEquals(x, f(true)); | 46 assertEquals(x, f(true)); |
| 47 assertEquals(x, f(true)); | 47 assertEquals(x, f(true)); |
| 48 assertEquals(x, f(true)); | 48 assertEquals(x, f(true)); |
| 49 } | 49 } |
| 50 | 50 |
| 51 test(foo); | 51 test(foo); |
| 52 test(bar); | 52 test(bar); |
| 53 test(baz); | 53 test(baz); |
| 54 test(qux); | 54 test(qux); |
| OLD | NEW |