Closed
Bug 716625
Opened 13 years ago
Closed 13 years ago
IonMonkey: Assertion failure: (objBits >> 47) == 0, at ../../jsval.h:781
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
DUPLICATE
of bug 716743
People
(Reporter: h4writer, Unassigned)
Details
This failure only happens on 64bit on the following testcase (minimized v8 deltablue test):
function getprop (obj) {
return obj.nonexist;
}
for (var n = 0; n < 100; n++) {
var a = new Object();
getprop(a);
}
- 64bit --ion-eager -n
Assertion failure: (objBits >> 47) == 0, at ../../jsval.h:781
when bug #716624 get's solved 64bit --ion -n gives this error too
Reporter | ||
Updated•13 years ago
|
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•