Closed
Bug 492292
Opened 16 years ago
Closed 16 years ago
nanojit: remove duplicated LIns predicates
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: n.nethercote, Assigned: n.nethercote)
References
Details
(Whiteboard: fixed-in-tracemonkey)
Attachments
(1 file)
(deleted),
patch
|
edwsmith
:
review+
|
Details | Diff | Splinter Review |
Previously, there were two versions of several LIR predicates, eg.
nanojit::isCmp(LOpcode op) and LIns::isCmp(), for no good reason.
This patch gets rid of the nanojit:: ones, because they are hardly used.
For the two cases (isCse() and isRet()) where the nanojit:: version has to
be kept, they've been renamed (to isCseOpcode() and isRetOpcode()) to make
the distinction clearer.
Attachment #376648 -
Flags: review?(edwsmith)
Updated•16 years ago
|
Attachment #376648 -
Flags: review?(edwsmith) → review+
Assignee | ||
Updated•16 years ago
|
Whiteboard: needs-checking → checkin-needed
Comment 1•16 years ago
|
||
Whiteboard: checkin-needed → fixed-in-tracemonkey
Comment 2•16 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•