Closed
Bug 808529
Opened 13 years ago
Closed 13 years ago
IonMonkey: Assertion failure: [barrier verifier] Unmarked edge: <unknown>, at jsgc.cpp:5331
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 808067
People
(Reporter: decoder, Unassigned)
References
Details
(Keywords: assertion, testcase)
The following testcase asserts on mozilla-central revision 2937fd8e35a1 (run with --ion-eager):
function TestCase(n, d, e, a)
this.passed = getTestCaseResult(e, a);
function reportCompare (expected, description) {
var testcase = new TestCase("unknown-test-name", description, expected, '');
}
function getTestCaseResult(expected, actual)
dump = (function () {});
gcslice(0);
gcslice(1);
gc();
var f;
reportCompare((let ( Function = this ) f), '' + ": }}}}}");
reportCompare('', '' + ": alert(6); } alert(5);");
reportCompare('', '' + ": } {");
gczeal(4);
new TestCase("", " (threw " +")", '', '');
| Reporter | ||
Comment 1•13 years ago
|
||
Nevermind this, it's a dup to bug 808067 (asserts differently on debug build).
Updated•10 years ago
|
Group: core-security
You need to log in
before you can comment on or make changes to this bug.
Description
•