Changeset 121804 in webkit


Ignore:
Timestamp:
Jul 3, 2012 2:44:07 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[BlackBerry] Turn on DFGJIT in Platform.h
https://bugs.webkit.org/show_bug.cgi?id=90482

Set ENABLE_DFG_JIT for PLATFORM(BLACKBERRY).

Patch by Yong Li <yoli@rim.com> on 2012-07-03
Reviewed by Rob Buis.

  • wtf/Platform.h:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r121801 r121804  
     12012-07-03  Yong Li  <yoli@rim.com>
     2
     3        [BlackBerry] Turn on DFGJIT in Platform.h
     4        https://bugs.webkit.org/show_bug.cgi?id=90482
     5
     6        Set ENABLE_DFG_JIT for PLATFORM(BLACKBERRY).
     7
     8        Reviewed by Rob Buis.
     9
     10        * wtf/Platform.h:
     11
    1122012-07-03  Tony Chang  <tony@chromium.org>
    213
  • trunk/Source/WTF/wtf/Platform.h

    r121524 r121804  
    904904#endif
    905905/* Enable the DFG JIT on ARMv7.  Only tested on iOS. */
    906 #if CPU(ARM_THUMB2) && PLATFORM(IOS)
     906#if CPU(ARM_THUMB2) && (PLATFORM(IOS) || PLATFORM(BLACKBERRY))
    907907#define ENABLE_DFG_JIT 1
    908908#endif
Note: See TracChangeset for help on using the changeset viewer.