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 function module() { | |
| 6 "use asm"; | |
| 7 function foo() { | |
| 8 do ; while (foo ? 0 : 1) ; | |
| 9 return -1 > 0 ? -1 : 0; | |
| 10 } | |
| 11 return foo; | |
| 12 } | |
| 13 | |
| 14 var foo = module(); | |
| 15 assertEquals(0, foo()); | |
| 16 assertEquals(0, foo()); | |
| OLD | NEW |