Source/JavaScriptCore/assembler/MacroAssembler.cpp

3232
3333const double MacroAssembler::twoToThe32 = (double)0x100000000ull;
3434
 35#if CPU(X86) && !OS(MAC_OS_X)
 36MacroAssemblerX86Common::SSE2CheckState MacroAssemblerX86Common::s_sse2CheckState = NotCheckedSSE2;
 37#endif
 38
3539} // namespace JSC
3640
3741#endif // ENABLE(ASSEMBLER)
174742

Source/JavaScriptCore/jit/JIT.cpp

2929
3030#include "JIT.h"
3131
32 // This probably does not belong here; adding here for now as a quick Windows build fix.
33 #if ENABLE(ASSEMBLER) && CPU(X86) && !OS(MAC_OS_X)
34 #include "MacroAssembler.h"
35 JSC::MacroAssemblerX86Common::SSE2CheckState JSC::MacroAssemblerX86Common::s_sse2CheckState = NotCheckedSSE2;
36 #endif
37 
3832#include "ArityCheckFailReturnThunks.h"
3933#include "CodeBlock.h"
4034#include "DFGCapabilities.h"
174742