Title: [164220] trunk/Source/WTF
Revision
164220
Author
[email protected]
Date
2014-02-17 07:17:35 -0800 (Mon, 17 Feb 2014)

Log Message

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: trunk/Source/WTF/ChangeLog (164219 => 164220)


--- trunk/Source/WTF/ChangeLog	2014-02-17 14:56:05 UTC (rev 164219)
+++ trunk/Source/WTF/ChangeLog	2014-02-17 15:17:35 UTC (rev 164220)
@@ -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-15  Filip Pizlo  <[email protected]>
 
         FTL should inline polymorphic heap accesses

Modified: trunk/Source/WTF/wtf/Platform.h (164219 => 164220)


--- trunk/Source/WTF/wtf/Platform.h	2014-02-17 14:56:05 UTC (rev 164219)
+++ trunk/Source/WTF/wtf/Platform.h	2014-02-17 15:17:35 UTC (rev 164220)
@@ -711,8 +711,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