blob: 7df0615d6493c0c51ca5cc2f727555f81b067743 [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
5function 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
14var foo = module();
15assertEquals(0, foo());
16assertEquals(0, foo());