Changeset 164953 in webkit for trunk/Source/JavaScriptCore/dfg/DFGDriver.cpp
- Timestamp:
- Mar 2, 2014, 3:14:47 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGDriver.cpp
r164734 r164953 93 93 new Plan(codeBlock, profiledDFGCodeBlock, mode, osrEntryBytecodeIndex, mustHandleValues)); 94 94 95 bool enableConcurrentJIT; 96 #if ENABLE(CONCURRENT_JIT) 97 enableConcurrentJIT = Options::enableConcurrentJIT(); 98 #else // ENABLE(CONCURRENT_JIT) 99 enableConcurrentJIT = false; 100 #endif // ENABLE(CONCURRENT_JIT) 101 if (enableConcurrentJIT) { 95 if (Options::enableConcurrentJIT()) { 102 96 Worklist* worklist = ensureGlobalWorklistFor(mode); 103 97 plan->callback = callback;
Note:
See TracChangeset
for help on using the changeset viewer.