Closed
Bug 843934
Opened 12 years ago
Closed 12 years ago
OdinMonkey: Assertion failure: !used(), at ../ion/shared/Assembler-shared.h:270
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: decoder, Unassigned)
References
Details
(Keywords: assertion, testcase, Whiteboard: [jsbugmon:ignore][fuzzblocker])
The following testcase asserts on odinmonkey revision b27a602dfed8 (run with ):
var asm = (function(global, env, buffer) {
'use asm';
function setTempRet5(value) {
value = value|0;
var i1 = 0, i2 = 0;
i2 = _malloc() | 0;
}
function _malloc() {
return i9 | 0;
}
return {};
}, buffer);
| Reporter | ||
Comment 1•12 years ago
|
||
Marking this as a fuzzblocker because it keeps triggering at high frequency.
Summary: BaselineCompiler: Assertion failure: !used(), at ../ion/shared/Assembler-shared.h:270 → OdinMonkey: Assertion failure: !used(), at ../ion/shared/Assembler-shared.h:270
Whiteboard: [jsbugmon:ignore] → [jsbugmon:ignore][fuzzblocker]
Comment 2•12 years ago
|
||
Ah, thanks. Label's like to assert that they are bound which causes spurious assertions for long-lived Labels when there is a compile error. Silenced:
http://hg.mozilla.org/users/lwagner_mozilla.com/odinmonkey/rev/827428b4fed0
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
•