Closed
Bug 846304
Opened 12 years ago
Closed 12 years ago
OdinMonkey: Assertion failure: !script()->formalIsAliased(i), at ../vm/Stack-inl.h:254
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: decoder, Unassigned)
References
Details
(Keywords: assertion, testcase, Whiteboard: [jsbugmon:ignore])
The following testcase asserts on odinmonkey revision 81e75bf7046e (run with --ion-eager):
var buffer;
var asm = (function(global, buffer) {
'use asm';
function stackSave() {
global : { }
}
return { };
})(buffer);
![]() |
||
Comment 1•12 years ago
|
||
Ah, the frontend is calling 'global' aliased even though it isn't; the 'global' inside 'stackSave' is a label:
http://hg.mozilla.org/users/lwagner_mozilla.com/odinmonkey/rev/a499695fb336
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•