Title: [220816] trunk/Source/WTF
Revision
220816
Author
[email protected]
Date
2017-08-16 16:29:47 -0700 (Wed, 16 Aug 2017)

Log Message

Gardening: fix GTK ARM_THUMB2 build.
https://bugs.webkit.org/show_bug.cgi?id=175446

Not reviewed.

Disable the use of the DFG for GTK ARM_THUMB2 builds until
https://bugs.webkit.org/show_bug.cgi?id=175514 is fixed.

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (220815 => 220816)


--- trunk/Source/WTF/ChangeLog	2017-08-16 23:15:32 UTC (rev 220815)
+++ trunk/Source/WTF/ChangeLog	2017-08-16 23:29:47 UTC (rev 220816)
@@ -1,3 +1,15 @@
+2017-08-16  Mark Lam  <[email protected]>
+
+        Gardening: fix GTK ARM_THUMB2 build.
+        https://bugs.webkit.org/show_bug.cgi?id=175446
+
+        Not reviewed.
+
+        Disable the use of the DFG for GTK ARM_THUMB2 builds until
+        https://bugs.webkit.org/show_bug.cgi?id=175514 is fixed.
+
+        * wtf/Platform.h:
+
 2017-08-16  Andy Estes  <[email protected]>
 
         [Payment Request] Add an ENABLE flag and an experimental feature preference

Modified: trunk/Source/WTF/wtf/Platform.h (220815 => 220816)


--- trunk/Source/WTF/wtf/Platform.h	2017-08-16 23:15:32 UTC (rev 220815)
+++ trunk/Source/WTF/wtf/Platform.h	2017-08-16 23:29:47 UTC (rev 220816)
@@ -774,7 +774,7 @@
 #define ENABLE_DFG_JIT 1
 #endif
 /* Enable the DFG JIT on ARMv7.  Only tested on iOS and Qt/GTK+ Linux. */
-#if (CPU(ARM_THUMB2) || CPU(ARM64)) && (PLATFORM(IOS) || PLATFORM(GTK) || PLATFORM(WPE))
+#if (CPU(ARM_THUMB2) || CPU(ARM64)) && (PLATFORM(IOS) || PLATFORM(WPE))
 #define ENABLE_DFG_JIT 1
 #endif
 /* Enable the DFG JIT on ARM. */
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to