Ignore:
Timestamp:
Jan 15, 2010, 5:56:34 PM (15 years ago)
Author:
[email protected]
Message:

Fix for <rdar://problem/7548432>
Add ALWAYS_INLINE to jsLess for a 1% speedup on llvm-gcc.

Reviewed by Maciej Stachowiak.

  • runtime/Operations.h:

(JSC::jsLess):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/Operations.h

    r53341 r53354  
    265265    }
    266266
    267     inline bool jsLess(CallFrame* callFrame, JSValue v1, JSValue v2)
     267    ALWAYS_INLINE bool jsLess(CallFrame* callFrame, JSValue v1, JSValue v2)
    268268    {
    269269        if (v1.isInt32() && v2.isInt32())
Note: See TracChangeset for help on using the changeset viewer.