Closed
Bug 618849
Opened 15 years ago
Closed 15 years ago
TypeInference: Assertion failure: !isCopied()
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: jandem, Unassigned)
References
Details
(Whiteboard: fixed-in-jaegermonkey)
---
function f() {
function g() {
var b = x;
var c = b++ & b;
return c;
}
var x = x--;
return g();
}
assertEq(f(), 0);
---
Asserts ./js -m:
Assertion failure: !isCopied(), at ../methodjit/FrameEntry.h:244
Comment 1•15 years ago
|
||
This is a bogus assert.
http://hg.mozilla.org/projects/jaegermonkey/rev/261101d210dc
http://hg.mozilla.org/projects/jaegermonkey/rev/8492590010d7
Whiteboard: fixed-in-jaegermonkey
Updated•15 years ago
|
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•