Ignore:
Timestamp:
Dec 22, 2009, 10:36:41 AM (15 years ago)
Author:
[email protected]
Message:

2009-12-22 Kwang Yul Seo <[email protected]>

Reviewed by Darin Adler.

Define ALWAYS_INLINE and WTF_PRIVATE_INLINE to forceinline for RVCT
https://bugs.webkit.org/show_bug.cgi?id=32853

Use forceinline forces RVCT to compile a C or C++ function
inline. The compiler attempts to inline the function, regardless of
the characteristics of the function.

  • wtf/AlwaysInline.h:
  • wtf/FastMalloc.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/FastMalloc.h

    r51908 r52490  
    199199#elif COMPILER(GCC)
    200200#define WTF_PRIVATE_INLINE inline __attribute__((always_inline))
    201 #elif COMPILER(MSVC)
     201#elif COMPILER(MSVC) || COMPILER(RVCT)
    202202#define WTF_PRIVATE_INLINE __forceinline
    203203#else
Note: See TracChangeset for help on using the changeset viewer.