Closed
Bug 710933
Opened 14 years ago
Closed 14 years ago
[IncrementalGC] Assertion failure: savedTos < gcmarker->stack.tos, at jsgcmark.cpp:810
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: decoder, Assigned: billm)
References
Details
(Keywords: assertion, testcase)
The following test asserts on larch branch (incremental GC) revision 591da0d755fa (options -m -n -a):
var appendToActual = function(s) {
actual += s + ',';
}
actual = '';
function g(a) {
for (var i = 0; i < 3; ++i) {
a();
}
}
function f(y) {
for (var i = 0; i < 7; -i) {
q = function() { appendToActual(y); };
g(q);
}
}
f("Function.prototype = null; Function.prototype");
Assignee | ||
Comment 1•14 years ago
|
||
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•