Title: [144337] trunk/Source/WTF
Revision
144337
Author
zeno.albis...@digia.com
Date
2013-02-28 11:37:22 -0800 (Thu, 28 Feb 2013)

Log Message

Enable DFG JIT for Qt on Mac
https://bugs.webkit.org/show_bug.cgi?id=111095

Rubber-stamped by Simon Hausmann

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (144336 => 144337)


--- trunk/Source/WTF/ChangeLog	2013-02-28 19:35:15 UTC (rev 144336)
+++ trunk/Source/WTF/ChangeLog	2013-02-28 19:37:22 UTC (rev 144337)
@@ -1,3 +1,12 @@
+2013-02-28  Zeno Albisser  <z...@webkit.org>
+
+        Enable DFG JIT for Qt on Mac
+        https://bugs.webkit.org/show_bug.cgi?id=111095
+
+        Rubber-stamped by Simon Hausmann
+
+        * wtf/Platform.h:
+
 2013-02-28  Eric Carlson  <eric.carl...@apple.com>
 
         [Mac] use HAVE() macro instead of version check

Modified: trunk/Source/WTF/wtf/Platform.h (144336 => 144337)


--- trunk/Source/WTF/wtf/Platform.h	2013-02-28 19:35:15 UTC (rev 144336)
+++ trunk/Source/WTF/wtf/Platform.h	2013-02-28 19:37:22 UTC (rev 144337)
@@ -801,7 +801,7 @@
 
 #if !defined(ENABLE_DFG_JIT) && ENABLE(JIT) && !COMPILER(MSVC)
 /* Enable the DFG JIT on X86 and X86_64.  Only tested on Mac and GNU/Linux. */
-#if (CPU(X86) || CPU(X86_64)) && (PLATFORM(MAC) || OS(LINUX))
+#if (CPU(X86) || CPU(X86_64)) && (OS(DARWIN) || OS(LINUX))
 #define ENABLE_DFG_JIT 1
 #endif
 /* Enable the DFG JIT on ARMv7.  Only tested on iOS and Qt Linux. */
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to