From 9436f89dd390abb3c49522d18fffbc062c17512f Mon Sep 17 00:00:00 2001 From: "mark.lam@apple.com" Date: Tue, 22 Aug 2017 04:57:27 +0000 Subject: [PATCH] [Follow up]: Add back the ability to disable MASM_PROBE from the build. https://bugs.webkit.org/show_bug.cgi?id=175656 Not reviewed. Fixed a typo: should be "OS(WINDOWS)", not "OS(WINDOW)". * wtf/Platform.h: git-svn-id: https://svn.webkit.org/repository/webkit/trunk@221003 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/WTF/ChangeLog | 12 ++++++++++++ Source/WTF/wtf/Platform.h | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Source/WTF/ChangeLog b/Source/WTF/ChangeLog index c2e99e010be6..7590886e1495 100644 --- a/Source/WTF/ChangeLog +++ b/Source/WTF/ChangeLog @@ -1,3 +1,15 @@ +2017-08-21 Mark Lam + + [Follow up]: Add back the ability to disable MASM_PROBE from the build. + https://bugs.webkit.org/show_bug.cgi?id=175656 + + + Not reviewed. + + Fixed a typo: should be "OS(WINDOWS)", not "OS(WINDOW)". + + * wtf/Platform.h: + 2017-08-21 Carlos Alberto Lopez Perez [GTK] ARMv7 build fails to build MacroAssemblerARMv7.cpp. diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h index a5550f1da05c..1a725266d8d6 100644 --- a/Source/WTF/wtf/Platform.h +++ b/Source/WTF/wtf/Platform.h @@ -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 -- 2.36.0