Title: [121804] trunk/Source/WTF
Revision
121804
Author
[email protected]
Date
2012-07-03 14:44:07 -0700 (Tue, 03 Jul 2012)

Log 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 <[email protected]> on 2012-07-03
Reviewed by Rob Buis.

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (121803 => 121804)


--- trunk/Source/WTF/ChangeLog	2012-07-03 21:37:28 UTC (rev 121803)
+++ trunk/Source/WTF/ChangeLog	2012-07-03 21:44:07 UTC (rev 121804)
@@ -1,3 +1,14 @@
+2012-07-03  Yong Li  <[email protected]>
+
+        [BlackBerry] Turn on DFGJIT in Platform.h
+        https://bugs.webkit.org/show_bug.cgi?id=90482
+
+        Set ENABLE_DFG_JIT for PLATFORM(BLACKBERRY).
+
+        Reviewed by Rob Buis.
+
+        * wtf/Platform.h:
+
 2012-07-03  Tony Chang  <[email protected]>
 
         [chromium] Unreviewed, update .gitignore to handle VS2010 files.

Modified: trunk/Source/WTF/wtf/Platform.h (121803 => 121804)


--- trunk/Source/WTF/wtf/Platform.h	2012-07-03 21:37:28 UTC (rev 121803)
+++ trunk/Source/WTF/wtf/Platform.h	2012-07-03 21:44:07 UTC (rev 121804)
@@ -903,7 +903,7 @@
 #define ENABLE_DFG_JIT 1
 #endif
 /* Enable the DFG JIT on ARMv7.  Only tested on iOS. */
-#if CPU(ARM_THUMB2) && PLATFORM(IOS)
+#if CPU(ARM_THUMB2) && (PLATFORM(IOS) || PLATFORM(BLACKBERRY))
 #define ENABLE_DFG_JIT 1
 #endif
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to