Closed
Bug 800617
Opened 13 years ago
Closed 13 years ago
IonMonkey: Fix some ARM-specific uber-nits.
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
mozilla19
People
(Reporter: sstangl, Unassigned)
Details
(Whiteboard: [ion:t])
Attachments
(1 file)
|
72.61 KB,
patch
|
mjrosenb
:
review+
|
Details | Diff | Splinter Review |
Fixes a bunch of incredibly tiny style nits within the arm/ subfolder. I had this lying around for a while, found it again recently, and might as well commit it. Nothing important whatsoever in this patch.
Attachment #670588 -
Flags: review?(mrosenberg)
Comment 1•13 years ago
|
||
Comment on attachment 670588 [details] [diff] [review]
patch
Review of attachment 670588 [details] [diff] [review]:
-----------------------------------------------------------------
You should make sure this compiles first. It looks like a few important lines of code were removed.
::: js/src/ion/arm/Assembler-arm.cpp
@@ +561,1 @@
> InstMovW *bottom = inst1->as<InstMovW>();
You sure do like removing the declaration of variables named 'top', don't you?
@@ +614,1 @@
> InstMovW *bottom = load1->as<InstMovW>();
top was not dead, I don't think that line can be removed.
@@ +1307,1 @@
>
Looks like mull_tag is not defined anywhere.
::: js/src/ion/arm/CodeGenerator-arm.cpp
@@ +905,1 @@
> case JSOP_SUB:
Guess I wrote that line before I calibrated emacs' indent level?
| Reporter | ||
Comment 2•13 years ago
|
||
(In reply to Marty Rosenberg [:mjrosenb] from comment #1)
> You should make sure this compiles first. It looks like a few important
> lines of code were removed.
The patch, as uploaded, compiles. Just verified to make sure.
> You sure do like removing the declaration of variables named 'top', don't
> you?
> ...
> top was not dead, I don't think that line can be removed.
It was moved; the declaration is still around.
>
> @@ +1307,1 @@
> >
>
> Looks like mull_tag is not defined anywhere.
It already existed in the file.
Updated•13 years ago
|
Attachment #670588 -
Flags: review?(mrosenberg) → review+
| Reporter | ||
Comment 3•13 years ago
|
||
Comment 4•13 years ago
|
||
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla19
You need to log in
before you can comment on or make changes to this bug.
Description
•