Closed
Bug 517332
Opened 16 years ago
Closed 16 years ago
TM: testEliminatedGuardWithinAnchor.js is reported to fail on ARM (but is correct)
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
| Tracking | Status | |
|---|---|---|
| status1.9.2 | --- | beta1-fixed |
People
(Reporter: gal, Assigned: dmandelin)
References
Details
(Whiteboard: fixed-in-tracemonkey)
Attachments
(1 file)
|
638 bytes,
patch
|
dvander
:
review+
|
Details | Diff | Splinter Review |
We don't have integer div/mod on ARM, so the test only results in one trace instead of 3 in case of 386, where we generate fast path code until the multiplication overflows. There is currently no way to distinguish arm from x86 in the trace-test harness.
| Assignee | ||
Comment 1•16 years ago
|
||
Once bug 517345 lands, this should do it:
if (jitstats.archIsARM) ...
Depends on: 517345
| Assignee | ||
Comment 2•16 years ago
|
||
Assignee: general → dmandelin
| Assignee | ||
Updated•16 years ago
|
Attachment #401933 -
Flags: review?(dvander)
Updated•16 years ago
|
Attachment #401933 -
Flags: review?(dvander) → review+
| Assignee | ||
Comment 3•16 years ago
|
||
Pushed to TM as 6d90fb9ae924.
Status: NEW → ASSIGNED
Whiteboard: fixed-in-tracemonkey
Comment 4•16 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Comment 5•16 years ago
|
||
status1.9.2:
--- → beta1-fixed
Flags: wanted1.9.2+
Updated•16 years ago
|
Flags: in-testsuite+
You need to log in
before you can comment on or make changes to this bug.
Description
•