Closed
Bug 1158896
Opened 10 years ago
Closed 10 years ago
prevent dead code from being generated in lower.py
Categories
(Core :: IPC, defect)
Core
IPC
Tracking
()
RESOLVED
FIXED
mozilla40
Tracking | Status | |
---|---|---|
firefox40 | --- | fixed |
People
(Reporter: froydnj, Assigned: froydnj)
References
(Blocks 1 open bug)
Details
(Keywords: coverity)
Attachments
(1 file)
(deleted),
patch
|
bent.mozilla
:
review+
|
Details | Diff | Splinter Review |
Coverity was complaining that we have things like:
if ((!(actor))) {
return false;
}
if ((!(actor))) {
return false;
}
in the generated code, as the second return will clearly never be hit. To
address this, let's remove a redundant call to dtorPrologue.
Assignee | ||
Comment 1•10 years ago
|
||
I can confirm that Send__delete__ instances now only have one check for null
actors, not two. This ought to be an easy review.
Attachment #8598097 -
Flags: review?(bent.mozilla)
Comment on attachment 8598097 [details] [diff] [review]
prevent dead code from being generated in lower.py
Thanks!
Attachment #8598097 -
Flags: review?(bent.mozilla) → review+
Comment 4•10 years ago
|
||
Status: NEW → RESOLVED
Closed: 10 years ago
status-firefox40:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla40
Updated•6 years ago
|
Blocks: coverity-analysis
You need to log in
before you can comment on or make changes to this bug.
Description
•