Changeset 213743 in webkit


Ignore:
Timestamp:
Mar 10, 2017 5:39:44 PM (7 years ago)
Author:
mark.lam@apple.com
Message:

Turn ENABLE(MASM_PROBE) on by default for OS(DARWIN) release builds.
https://bugs.webkit.org/show_bug.cgi?id=169493

Reviewed by Saam Barati.

MASM_PROBE was already enabled for debug builds. This change makes it so that we
don't have to rebuild the world every time we need to use it on a release build.

  • wtf/Platform.h:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r213705 r213743  
     12017-03-10  Mark Lam  <mark.lam@apple.com>
     2
     3        Turn ENABLE(MASM_PROBE) on by default for OS(DARWIN) release builds.
     4        https://bugs.webkit.org/show_bug.cgi?id=169493
     5
     6        Reviewed by Saam Barati.
     7
     8        MASM_PROBE was already enabled for debug builds.  This change makes it so that we
     9        don't have to rebuild the world every time we need to use it on a release build.
     10
     11        * wtf/Platform.h:
     12
    1132017-03-10  Csaba Osztrogonác  <ossy@webkit.org>
    214
  • trunk/Source/WTF/wtf/Platform.h

    r213678 r213743  
    900900/* Enable the following if you want to use the MacroAssembler::probe() facility
    901901   to do JIT debugging. */
    902 #if (CPU(X86) || CPU(X86_64) || CPU(ARM64) || (CPU(ARM_THUMB2) && PLATFORM(IOS))) && ENABLE(JIT) && OS(DARWIN) && !defined(NDEBUG)
     902#if (CPU(X86) || CPU(X86_64) || CPU(ARM64) || (CPU(ARM_THUMB2) && PLATFORM(IOS))) && ENABLE(JIT) && OS(DARWIN)
    903903#define ENABLE_MASM_PROBE 1
    904904#else
Note: See TracChangeset for help on using the changeset viewer.