Closed
Bug 841146
Opened 13 years ago
Closed 13 years ago
js/src/ion/ParallelArrayAnalysis.cpp:72:29: warning: private field 'compileContext_' is not used [-Wunused-private-field]
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
mozilla21
People
(Reporter: dholbert, Assigned: dholbert)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
|
2.61 KB,
patch
|
nmatsakis
:
review+
|
Details | Diff | Splinter Review |
New clang build warning:
{
js/src/ion/ParallelArrayAnalysis.cpp:72:29: warning: private field 'compileContext_' is not used [-Wunused-private-field]
}
This was added in https://hg.mozilla.org/mozilla-central/rev/80a21124ddbd for bug 807853.
Niko: is this variable going intentionally-unused, & intended to be used at some point in the future?
If not, then we should drop it; but if so, then we can suppress the build warning w/ a (void) cast.
| Assignee | ||
Comment 1•13 years ago
|
||
Link to source, for reference:
https://mxr.mozilla.org/mozilla-central/source/js/src/ion/ParallelArrayAnalysis.cpp#72
| Assignee | ||
Updated•13 years ago
|
Blocks: buildwarning
Comment 2•13 years ago
|
||
I think it is simply unused and can be removed.
| Assignee | ||
Updated•13 years ago
|
Assignee: general → dholbert
Status: NEW → ASSIGNED
| Assignee | ||
Comment 3•13 years ago
|
||
Attachment #713600 -
Flags: review?(nmatsakis)
Updated•13 years ago
|
Attachment #713600 -
Flags: review?(nmatsakis) → review+
| Assignee | ||
Updated•13 years ago
|
Keywords: checkin-needed
| Assignee | ||
Updated•13 years ago
|
Keywords: checkin-needed
| Assignee | ||
Comment 4•13 years ago
|
||
Flags: in-testsuite-
Comment 5•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla21
You need to log in
before you can comment on or make changes to this bug.
Description
•