Title: [166593] trunk/Source/WTF
Revision
166593
Author
o...@webkit.org
Date
2014-04-01 09:32:41 -0700 (Tue, 01 Apr 2014)

Log Message

[EFL] REGRESSION(166569): It made DoYouEvenBench/Full.html, CSS/QuerySelector.html and Dromaeo performance tests crash
https://bugs.webkit.org/show_bug.cgi?id=131039

Patch by Zsolt Borbely <zsborbely.u-sze...@partner.samsung.com> on 2014-04-01
Reviewed by Csaba Osztrogonác.

* wtf/Platform.h: Disable CSS JIT on EFL until proper fix.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (166592 => 166593)


--- trunk/Source/WTF/ChangeLog	2014-04-01 16:18:38 UTC (rev 166592)
+++ trunk/Source/WTF/ChangeLog	2014-04-01 16:32:41 UTC (rev 166593)
@@ -1,3 +1,12 @@
+2014-04-01  Zsolt Borbely  <zsborbely.u-sze...@partner.samsung.com>
+
+        [EFL] REGRESSION(166569): It made DoYouEvenBench/Full.html, CSS/QuerySelector.html and Dromaeo performance tests crash
+        https://bugs.webkit.org/show_bug.cgi?id=131039
+
+        Reviewed by Csaba Osztrogonác.
+
+        * wtf/Platform.h: Disable CSS JIT on EFL until proper fix.
+
 2014-04-01  Commit Queue  <commit-qu...@webkit.org>
 
         Unreviewed, rolling out r166583.

Modified: trunk/Source/WTF/wtf/Platform.h (166592 => 166593)


--- trunk/Source/WTF/wtf/Platform.h	2014-04-01 16:18:38 UTC (rev 166592)
+++ trunk/Source/WTF/wtf/Platform.h	2014-04-01 16:32:41 UTC (rev 166593)
@@ -849,7 +849,7 @@
 
 /* CSS Selector JIT Compiler */
 #if !defined(ENABLE_CSS_SELECTOR_JIT)
-#if CPU(X86_64) && ENABLE(JIT) && (OS(DARWIN) || PLATFORM(EFL)) && !PLATFORM(GTK)
+#if CPU(X86_64) && ENABLE(JIT) && OS(DARWIN) && !PLATFORM(EFL) && !PLATFORM(GTK)
 #define ENABLE_CSS_SELECTOR_JIT 1
 #else
 #define ENABLE_CSS_SELECTOR_JIT 0
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to