Changeset 220816 in webkit


Ignore:
Timestamp:
Aug 16, 2017 4:29:47 PM (7 years ago)
Author:
mark.lam@apple.com
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:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r220787 r220816  
     12017-08-16  Mark Lam  <mark.lam@apple.com>
     2
     3        Gardening: fix GTK ARM_THUMB2 build.
     4        https://bugs.webkit.org/show_bug.cgi?id=175446
     5
     6        Not reviewed.
     7
     8        Disable the use of the DFG for GTK ARM_THUMB2 builds until
     9        https://bugs.webkit.org/show_bug.cgi?id=175514 is fixed.
     10
     11        * wtf/Platform.h:
     12
    1132017-08-16  Andy Estes  <aestes@apple.com>
    214
  • trunk/Source/WTF/wtf/Platform.h

    r220615 r220816  
    775775#endif
    776776/* Enable the DFG JIT on ARMv7.  Only tested on iOS and Qt/GTK+ Linux. */
    777 #if (CPU(ARM_THUMB2) || CPU(ARM64)) && (PLATFORM(IOS) || PLATFORM(GTK) || PLATFORM(WPE))
     777#if (CPU(ARM_THUMB2) || CPU(ARM64)) && (PLATFORM(IOS) || PLATFORM(WPE))
    778778#define ENABLE_DFG_JIT 1
    779779#endif
Note: See TracChangeset for help on using the changeset viewer.