Changeset 53354 in webkit for trunk/JavaScriptCore


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):

Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r53341 r53354  
     12010-01-15  Sam Weinig  <[email protected]>
     2
     3        Reviewed by Maciej Stachowiak.
     4
     5        Fix for <rdar://problem/7548432>
     6        Add ALWAYS_INLINE to jsLess for a 1% speedup on llvm-gcc.
     7
     8        * runtime/Operations.h:
     9        (JSC::jsLess):
     10
    1112010-01-14  Geoffrey Garen  <[email protected]>
    212
  • 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.