Title: [213743] trunk/Source/WTF
Revision
213743
Author
mark....@apple.com
Date
2017-03-10 17:39:44 -0800 (Fri, 10 Mar 2017)

Log 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:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (213742 => 213743)


--- trunk/Source/WTF/ChangeLog	2017-03-11 01:38:22 UTC (rev 213742)
+++ trunk/Source/WTF/ChangeLog	2017-03-11 01:39:44 UTC (rev 213743)
@@ -1,3 +1,15 @@
+2017-03-10  Mark Lam  <mark....@apple.com>
+
+        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:
+
 2017-03-10  Csaba Osztrogonác  <o...@webkit.org>
 
         Unreviewed AArch64 Linux buildfix after r213645.

Modified: trunk/Source/WTF/wtf/Platform.h (213742 => 213743)


--- trunk/Source/WTF/wtf/Platform.h	2017-03-11 01:38:22 UTC (rev 213742)
+++ trunk/Source/WTF/wtf/Platform.h	2017-03-11 01:39:44 UTC (rev 213743)
@@ -899,7 +899,7 @@
 
 /* Enable the following if you want to use the MacroAssembler::probe() facility
    to do JIT debugging. */
-#if (CPU(X86) || CPU(X86_64) || CPU(ARM64) || (CPU(ARM_THUMB2) && PLATFORM(IOS))) && ENABLE(JIT) && OS(DARWIN) && !defined(NDEBUG)
+#if (CPU(X86) || CPU(X86_64) || CPU(ARM64) || (CPU(ARM_THUMB2) && PLATFORM(IOS))) && ENABLE(JIT) && OS(DARWIN)
 #define ENABLE_MASM_PROBE 1
 #else
 #define ENABLE_MASM_PROBE 0
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to