Closed
Bug 685234
Opened 13 years ago
Closed 13 years ago
GCC 4.6 build warning: "jsparse.cpp:8457:16: warning: variable 'afterComma' set but not used [-Wunused-but-set-variable]"
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
mozilla9
People
(Reporter: dholbert, Assigned: dholbert)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
1.87 KB,
patch
|
jimb
:
review+
|
Details | Diff | Splinter Review |
Filing bug on this GCC 4.6 build warning:
{
js/src/jsparse.cpp: In member function 'JSParseNode* js::Parser::primaryExpr(js::TokenKind, JSBool)':
js/src/jsparse.cpp:8457:16: warning: variable 'afterComma' set but not used [-Wunused-but-set-variable]
}
A MXR search of old CVS source tree shows that in this variable was originally used once:
https://mxr.mozilla.org/firefox/search?string=afterComma&find=%2Fjs
{
/js/src/jsparse.c
line 5491 -- JSBool afterComma;
line 5507 -- afterComma = JS_FALSE;
line 5559 -- if (afterComma && <------------ (here's the only usage)
line 5628 -- afterComma = JS_TRUE;
}
That usage was deleted in this cset for Bug 508637:
https://hg.mozilla.org/mozilla-central/rev/12cc5c8c1236
Looks like this variable can just go away now.
Assignee | ||
Comment 1•13 years ago
|
||
Updated•13 years ago
|
Attachment #558883 -
Flags: review?(jimb) → review+
Assignee | ||
Comment 2•13 years ago
|
||
Whiteboard: [inbound]
Target Milestone: --- → mozilla9
Comment 3•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Whiteboard: [inbound]
You need to log in
before you can comment on or make changes to this bug.
Description
•