Status: New
Owner: ----

New issue 596 by gojpeg: Stack overflow in long sum statement
http://code.google.com/p/v8/issues/detail?id=596

var y = 1
var x = y + 1 + 1 + … 1215 more … + 1

leads to the error: Maximum call stack size exceeded

the variant without “y” variable gives a normal execution (compile-time optimized I think):
var x = 1 + 1 + … 1215 more … + 1
//=> 1218

results for Google Chrome 4.0.249.49 (35163) beta for Mac

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

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

Reply via email to