Status: Assigned
Owner: [email protected]
Labels: Type-Bug Priority-Medium

New issue 2317 by [email protected]: D8's print in recursion before stack overflow occurs.
http://code.google.com/p/v8/issues/detail?id=2317

function test(i) {
  %DebugPrint(i);
  print(i);
  test(i+1);
}

test(0);


while %DebugPrint succeeds in printing i, print print's nothing in the last ~20 recursions before stack overflow occurs.

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to