Changeset 127719 in webkit for trunk/Source/JavaScriptCore/runtime/JSGlobalData.cpp
- Timestamp:
- Sep 6, 2012, 3:13:14 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSGlobalData.cpp
r127554 r127719 101 101 static bool enableAssembler(ExecutableAllocator& executableAllocator) 102 102 { 103 if (!executableAllocator.isValid() || (!Options::useJIT() && !Options::use YarrJIT()))103 if (!executableAllocator.isValid() || (!Options::useJIT() && !Options::useRegExpJIT())) 104 104 return false; 105 105 … … 183 183 #if ENABLE(ASSEMBLER) && (ENABLE(CLASSIC_INTERPRETER) || ENABLE(LLINT)) 184 184 , m_canUseAssembler(enableAssembler(executableAllocator)) 185 , m_canUseJIT(m_canUseAssembler && Options::useJIT()) 186 , m_canUseRegExpJIT(m_canUseAssembler && Options::useRegExpJIT()) 185 187 #endif 186 188 #if ENABLE(GC_VALIDATION)
Note:
See TracChangeset
for help on using the changeset viewer.