Summary: | Air should eliminate dead code | ||||||
---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Filip Pizlo <fpizlo> | ||||
Component: | JavaScriptCore | Assignee: | Filip Pizlo <fpizlo> | ||||
Status: | RESOLVED FIXED | ||||||
Severity: | Normal | CC: | barraclough, benjamin, commit-queue, ggaren, mark.lam, mhahnenb, msaboff, nrotem, oliver, saam, sam | ||||
Priority: | P2 | ||||||
Version: | WebKit Nightly Build | ||||||
Hardware: | All | ||||||
OS: | All | ||||||
Bug Depends on: | |||||||
Bug Blocks: | 150456 | ||||||
Attachments: |
|
Description
Filip Pizlo
2015-10-30 18:38:39 PDT
Created attachment 264456 [details]
the patch
Attachment 264456 [details] did not pass style-queue:
ERROR: Source/JavaScriptCore/b3/air/AirEliminateDeadCode.cpp:83: Place brace on its own line for function definitions. [whitespace/braces] [4]
ERROR: Source/JavaScriptCore/b3/air/AirEliminateDeadCode.cpp:91: Place brace on its own line for function definitions. [whitespace/braces] [4]
ERROR: Source/JavaScriptCore/b3/air/AirEliminateDeadCode.cpp:100: Place brace on its own line for function definitions. [whitespace/braces] [4]
Total errors found: 3 in 11 files
If any of these errors are false positives, please file a bug against check-webkit-style.
Comment on attachment 264456 [details]
the patch
r=me
Comment on attachment 264456 [details] the patch View in context: https://bugs.webkit.org/attachment.cgi?id=264456&action=review > Source/JavaScriptCore/b3/air/AirEliminateDeadCode.h:36 > +// This allocates StackSlots to places on the stack. It first allocates the pinned ones in index > +// order and then it allocates the rest using first fit. Comment is wrong. (In reply to comment #4) > Comment on attachment 264456 [details] > the patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=264456&action=review > > > Source/JavaScriptCore/b3/air/AirEliminateDeadCode.h:36 > > +// This allocates StackSlots to places on the stack. It first allocates the pinned ones in index > > +// order and then it allocates the rest using first fit. > > Comment is wrong. Ooops! Landed in http://trac.webkit.org/changeset/191846 |