Title: [164706] releases/WebKitGTK/webkit-2.4/Source/WTF
Revision
164706
Author
[email protected]
Date
2014-02-26 00:23:22 -0800 (Wed, 26 Feb 2014)

Log Message

Merge r164220 - Enable DFG_JIT on FreeBSD
https://bugs.webkit.org/show_bug.cgi?id=128898

Patch by Ryan Lortie <[email protected]> on 2014-02-17
Reviewed by Csaba Osztrogonác.

* wtf/Platform.h:

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.4/Source/WTF/ChangeLog (164705 => 164706)


--- releases/WebKitGTK/webkit-2.4/Source/WTF/ChangeLog	2014-02-26 08:12:42 UTC (rev 164705)
+++ releases/WebKitGTK/webkit-2.4/Source/WTF/ChangeLog	2014-02-26 08:23:22 UTC (rev 164706)
@@ -1,3 +1,12 @@
+2014-02-17  Ryan Lortie  <[email protected]>
+
+        Enable DFG_JIT on FreeBSD
+        https://bugs.webkit.org/show_bug.cgi?id=128898
+
+        Reviewed by Csaba Osztrogonác.
+
+        * wtf/Platform.h:
+
 2014-02-10  Carlos Garcia Campos  <[email protected]>
 
         [GLIB] Add GUniqueOutPtr and use it instead of GOwnPtr

Modified: releases/WebKitGTK/webkit-2.4/Source/WTF/wtf/Platform.h (164705 => 164706)


--- releases/WebKitGTK/webkit-2.4/Source/WTF/wtf/Platform.h	2014-02-26 08:12:42 UTC (rev 164705)
+++ releases/WebKitGTK/webkit-2.4/Source/WTF/wtf/Platform.h	2014-02-26 08:23:22 UTC (rev 164706)
@@ -715,8 +715,8 @@
 #endif
 
 #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)) && (OS(DARWIN) || OS(LINUX))
+/* Enable the DFG JIT on X86 and X86_64.  Only tested on Mac, GNU/Linux and FreeBSD. */
+#if (CPU(X86) || CPU(X86_64)) && (OS(DARWIN) || OS(LINUX) || OS(FREEBSD))
 #define ENABLE_DFG_JIT 1
 #endif
 /* Enable the DFG JIT on ARMv7.  Only tested on iOS and Qt/GTK+ Linux. */
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to