Ignore:
Timestamp:
Oct 1, 2010, 10:50:39 AM (15 years ago)
Author:
[email protected]
Message:

2010-10-01 Pratik Solanki <[email protected]>

Reviewed by Geoffrey Garen.
Specify ALWAYS_INLINE at function declaration not function definition
https://bugs.webkit.org/show_bug.cgi?id=46960

For functions defined with ALWAYS_INLINE, add the attribute to the declaration as well.

  • bytecompiler/BytecodeGenerator.h:
  • wtf/FastMalloc.cpp:

2010-10-01 Pratik Solanki <[email protected]>

Reviewed by Geoffrey Garen.
Specify ALWAYS_INLINE at function declaration not function definition
https://bugs.webkit.org/show_bug.cgi?id=46960

For functions defined with ALWAYS_INLINE, add the attribute to the declaration as well.

  • css/CSSStyleSelector.h:
  • rendering/InlineIterator.h:
  • rendering/style/RenderStyle.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/bytecompiler/BytecodeGenerator.h

    r68338 r68899  
    425425        void retrieveLastBinaryOp(int& dstIndex, int& src1Index, int& src2Index);
    426426        void retrieveLastUnaryOp(int& dstIndex, int& srcIndex);
    427         void rewindBinaryOp();
    428         void rewindUnaryOp();
     427        ALWAYS_INLINE void rewindBinaryOp();
     428        ALWAYS_INLINE void rewindUnaryOp();
    429429
    430430        PassRefPtr<Label> emitComplexJumpScopes(Label* target, ControlFlowContext* topScope, ControlFlowContext* bottomScope);
Note: See TracChangeset for help on using the changeset viewer.