Closed
Bug 643169
Opened 14 years ago
Closed 14 years ago
TI: [infer failure] Missing type at #3:00029 pushed 0: bool
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
People
(Reporter: jandem, Unassigned)
References
Details
(Whiteboard: fixed-in-jaegermonkey)
--
for(var i=0; i<3; i++) {
var x;
function ff() {}
with(this) {}
print(x);
x = true;
}
--
$ ./js -n -a test.js
undefined
[infer failure] Missing type at #3:00029 pushed 0: bool
Comment 1•14 years ago
|
||
Hmm, fixed by the below revision I think (will push the testcase). The interpreter didn't monitor the results of JSOP_NAME on property cache hits.
http://hg.mozilla.org/projects/jaegermonkey/rev/5ce2f7a90286
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Whiteboard: fixed-in-jaegermonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•