Title: [221003] trunk/Source/WTF
Revision
221003
Author
[email protected]
Date
2017-08-21 21:57:27 -0700 (Mon, 21 Aug 2017)

Log Message

[Follow up]: Add back the ability to disable MASM_PROBE from the build.
https://bugs.webkit.org/show_bug.cgi?id=175656
<rdar://problem/33933720>

Not reviewed.

Fixed a typo: should be "OS(WINDOWS)", not "OS(WINDOW)".

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (221002 => 221003)


--- trunk/Source/WTF/ChangeLog	2017-08-22 04:41:25 UTC (rev 221002)
+++ trunk/Source/WTF/ChangeLog	2017-08-22 04:57:27 UTC (rev 221003)
@@ -1,3 +1,15 @@
+2017-08-21  Mark Lam  <[email protected]>
+
+        [Follow up]: Add back the ability to disable MASM_PROBE from the build.
+        https://bugs.webkit.org/show_bug.cgi?id=175656
+        <rdar://problem/33933720>
+
+        Not reviewed.
+
+        Fixed a typo: should be "OS(WINDOWS)", not "OS(WINDOW)".
+
+        * wtf/Platform.h:
+
 2017-08-21  Carlos Alberto Lopez Perez  <[email protected]>
 
         [GTK] ARMv7 build fails to build MacroAssemblerARMv7.cpp.

Modified: trunk/Source/WTF/wtf/Platform.h (221002 => 221003)


--- trunk/Source/WTF/wtf/Platform.h	2017-08-22 04:41:25 UTC (rev 221002)
+++ trunk/Source/WTF/wtf/Platform.h	2017-08-22 04:57:27 UTC (rev 221003)
@@ -827,7 +827,7 @@
 #define ENABLE_MASM_PROBE 0
 #endif
 
-#if !ENABLE(JIT) || OS(WINDOW)
+#if !ENABLE(JIT) || OS(WINDOWS)
 #undef ENABLE_MASM_PROBE
 #define ENABLE_MASM_PROBE 0
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to