Closed
Bug 718850
Opened 13 years ago
Closed 13 years ago
IonMonkey: JSOP_AND cannot be used in loops.
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
People
(Reporter: sstangl, Assigned: sstangl)
Details
Attachments
(1 file)
1.95 KB,
patch
|
jandem
:
review+
|
Details | Diff | Splinter Review |
We currently fail to compile the following script:
> function f() {
> var i = 1;
> while (i && 1 == 1)
> { }
> }
>
> f();
The IonBuilder assumes that both sides of the && have a common join point, which is only useful for code like |var x 1 && 7;|.
This bug is preventing us from running v8's crypto test.
Assignee | ||
Comment 1•13 years ago
|
||
Attachment #589348 -
Flags: review?(jdemooij)
Updated•13 years ago
|
Attachment #589348 -
Flags: review?(jdemooij) → review+
Assignee | ||
Comment 2•13 years ago
|
||
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•