Changeset 220960 in webkit
- Timestamp:
- Aug 20, 2017, 11:56:19 PM (7 years ago)
- Location:
- trunk/Source
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r220958 r220960 1 2017-08-20 Mark Lam <mark.lam@apple.com> 2 3 Gardening: fix CLoop build. 4 https://bugs.webkit.org/show_bug.cgi?id=175688 5 <rdar://problem/33436870> 6 7 Not reviewed. 8 9 Make these files dependent on ENABLE(MASM_PROBE). 10 11 * assembler/ProbeContext.cpp: 12 * assembler/ProbeContext.h: 13 * assembler/ProbeStack.cpp: 14 * assembler/ProbeStack.h: 15 1 16 2017-08-20 Mark Lam <mark.lam@apple.com> 2 17 -
trunk/Source/JavaScriptCore/assembler/ProbeContext.cpp
r220958 r220960 26 26 #include "config.h" 27 27 #include "ProbeContext.h" 28 29 #if ENABLE(MASM_PROBE) 28 30 29 31 namespace JSC { … … 75 77 } // namespace Probe 76 78 } // namespace JSC 79 80 #endif // ENABLE(MASM_PROBE) -
trunk/Source/JavaScriptCore/assembler/ProbeContext.h
r220958 r220960 29 29 #include "ProbeStack.h" 30 30 31 #if ENABLE(MASM_PROBE) 32 31 33 namespace JSC { 32 34 namespace Probe { … … 248 250 249 251 } // namespace Probe 250 251 252 } // namespace JSC 253 254 #endif // ENABLE(MASM_PROBE) -
trunk/Source/JavaScriptCore/assembler/ProbeStack.cpp
r220958 r220960 28 28 29 29 #include <memory> 30 31 #if ENABLE(MASM_PROBE) 30 32 31 33 namespace JSC { … … 109 111 } // namespace Probe 110 112 } // namespace JSC 113 114 #endif // ENABLE(MASM_PROBE) -
trunk/Source/JavaScriptCore/assembler/ProbeStack.h
r220958 r220960 29 29 #include <wtf/StdLibExtras.h> 30 30 #include <wtf/Threading.h> 31 32 #if ENABLE(MASM_PROBE) 31 33 32 34 namespace JSC { … … 192 194 } // namespace Probe 193 195 } // namespace JSC 196 197 #endif // ENABLE(MASM_PROBE) -
trunk/Source/WTF/ChangeLog
r220947 r220960 1 2017-08-20 Mark Lam <mark.lam@apple.com> 2 3 Gardening: fix CLoop build. 4 https://bugs.webkit.org/show_bug.cgi?id=175688 5 <rdar://problem/33436870> 6 7 Not reviewed. 8 9 Disable MASM_PROBE if !ENABLE(JIT). 10 11 * wtf/Platform.h: 12 1 13 2017-08-18 Ryan Haddad <ryanhaddad@apple.com> 2 14 -
trunk/Source/WTF/wtf/Platform.h
r220926 r220960 828 828 #endif 829 829 830 #if OS(WINDOW)830 #if !ENABLE(JIT) || OS(WINDOW) 831 831 #undef ENABLE_MASM_PROBE 832 832 #define ENABLE_MASM_PROBE 0
Note:
See TracChangeset
for help on using the changeset viewer.