Changeset 166593 in webkit


Ignore:
Timestamp:
Apr 1, 2014 9:32:41 AM (10 years ago)
Author:
Csaba Osztrogonác
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-szeged@partner.samsung.com> on 2014-04-01
Reviewed by Csaba Osztrogonác.

  • wtf/Platform.h: Disable CSS JIT on EFL until proper fix.
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r166591 r166593  
     12014-04-01  Zsolt Borbely  <zsborbely.u-szeged@partner.samsung.com>
     2
     3        [EFL] REGRESSION(166569): It made DoYouEvenBench/Full.html, CSS/QuerySelector.html and Dromaeo performance tests crash
     4        https://bugs.webkit.org/show_bug.cgi?id=131039
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * wtf/Platform.h: Disable CSS JIT on EFL until proper fix.
     9
    1102014-04-01  Commit Queue  <commit-queue@webkit.org>
    211
  • trunk/Source/WTF/wtf/Platform.h

    r166591 r166593  
    850850/* CSS Selector JIT Compiler */
    851851#if !defined(ENABLE_CSS_SELECTOR_JIT)
    852 #if CPU(X86_64) && ENABLE(JIT) && (OS(DARWIN) || PLATFORM(EFL)) && !PLATFORM(GTK)
     852#if CPU(X86_64) && ENABLE(JIT) && OS(DARWIN) && !PLATFORM(EFL) && !PLATFORM(GTK)
    853853#define ENABLE_CSS_SELECTOR_JIT 1
    854854#else
Note: See TracChangeset for help on using the changeset viewer.