Changeset 53354 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jan 15, 2010, 5:56:34 PM (15 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r53341 r53354 1 2010-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 1 11 2010-01-14 Geoffrey Garen <[email protected]> 2 12 -
trunk/JavaScriptCore/runtime/Operations.h
r53341 r53354 265 265 } 266 266 267 inlinebool jsLess(CallFrame* callFrame, JSValue v1, JSValue v2)267 ALWAYS_INLINE bool jsLess(CallFrame* callFrame, JSValue v1, JSValue v2) 268 268 { 269 269 if (v1.isInt32() && v2.isInt32())
Note:
See TracChangeset
for help on using the changeset viewer.