michael@0: // Don't abort during SSA construction. michael@0: function f() { michael@0: var i = 0; michael@0: while (i < 100 && 1 == 1) { michael@0: i++; michael@0: } michael@0: return i; michael@0: } michael@0: michael@0: assertEq(f(), 100);