Comment #1 on issue 2476 by [email protected]: document.write(i) broken on 3rd loop on WebKit's WinCE(arm) port integreted with V8 engine
http://code.google.com/p/v8/issues/detail?id=2476

The key point is:
1、Using loop, for/while, or even recursion like this:
  function test(i){ if(i==4) return; document.write(i); test(++i); }
  test(0);
2、WinCE simulator run will be broken at 3rd loop run!
3、I'm using the V8 trunk code

I hesitated if it's V8 doesn't support old WinCE 6.0 port, since VS2005 arm compiler generated code may be in-consistent with V8-arm's JIT engine?

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

Reply via email to