[Webkit-unassigned] [Bug 96127] JSC: Fix some llint C++ interpreter bugs

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Sep 7 15:02:23 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=96127


Geoffrey Garen <ggaren at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #162844|                            |review-
               Flag|                            |




--- Comment #5 from Geoffrey Garen <ggaren at apple.com>  2012-09-07 15:02:38 PST ---
(From update of attachment 162844)
View in context: https://bugs.webkit.org/attachment.cgi?id=162844&action=review

> Source/WTF/wtf/Assertions.h:247
> +static ALWAYS_INLINE void wtfAssert(bool assertion, const char* file, int line,

ALWAYS_INLINE isn't meaningful here. Inlining is turned of in ASSERT builds. Like I said before, ASSERT is not a performance-relevant code path.

> Source/WTF/wtf/Assertions.h:249
> +                                    const char* function,
> +                                    const char* assertionString)

WebKit style is not to indent lines like this, because it adds extra busy work to later edits to keep the lines equally indented. You can either put "function" and "assertionString" on the same line, indented by one tabstop, or you can put each of assertion, file, line, function, and assertionString on their own lines, indented by one tabstop.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list