Closed
Bug 708777
Opened 13 years ago
Closed 13 years ago
IonMonkey: Assertion failure: unexpected type, at Lowering.cpp:538
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
People
(Reporter: jandem, Assigned: dvander)
References
Details
Attachments
(1 file)
(deleted),
patch
|
bhackett1024
:
review+
|
Details | Diff | Splinter Review |
jit-tests/tests/jaeger/recompile/undef.js asserts. Here's a reduced testcase without callgname:
--
function local() {
var x;
x++;
return x;
}
local();
--
Asserts when lowering MToInt32(undefined).
Assignee | ||
Comment 1•13 years ago
|
||
Comment 2•13 years ago
|
||
Comment on attachment 594364 [details] [diff] [review]
fix
Review of attachment 594364 [details] [diff] [review]:
-----------------------------------------------------------------
::: js/src/shell/js.cpp
@@ +5461,5 @@
> || !op.addStringOption('\0', "ion-gvn", "[mode]",
> "Specify Ion global value numbering:\n"
> " off: disable GVN\n"
> + " pessimistic: (default) use pessimistic GVN\n"
> + " optimistic: use optimistic GVN")
Intended for this patch?
Attachment #594364 -
Flags: review?(bhackett1024) → review+
Assignee | ||
Comment 3•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•